Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 28, 2020 06:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save computer-tutor/f0ecd79c39afd055386cd37bda3b56fa to your computer and use it in GitHub Desktop.
Save computer-tutor/f0ecd79c39afd055386cd37bda3b56fa to your computer and use it in GitHub Desktop.
f = open('Poem.txt', 'r')
c_to=0
c_the=0
for line in f:
c_to += line.count('to')
c_the += line.count('the')
print(c_to)
print(c_the)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment