Skip to content

Instantly share code, notes, and snippets.

@Allwin12
Created June 18, 2020 16:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Allwin12/efcfa8933258c0d5b34db675b19278c3 to your computer and use it in GitHub Desktop.
Save Allwin12/efcfa8933258c0d5b34db675b19278c3 to your computer and use it in GitHub Desktop.
words = set()
with open('poem.txt') as file:
for line in file:
words.update(line.lower().split())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment