Advertisement
Guest User

Untitled

a guest
May 26th, 2015
235
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. words = {}
  2. def words_dic(): #p.106
  3. fin = open('words.txt')
  4. for line in fin:
  5. word = line.strip()
  6. words[word] = 0
  7. return words
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement