Guest User

Untitled

a guest
Jul 19th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. import random
  2. words = "/usr/share/dict/words"
  3. lines = open(words).readlines()
  4. word = lines[random.randint(0, len(lines))]
  5. print "cloud" + word.lower()
Add Comment
Please, Sign In to add comment