You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

6 lines
188 B
Python

import random
with open('/usr/share/dict/words', 'rt') as fh:
words = fh.readlines()
words = [w.rstrip() for w in words]
for w in random.sample(words, 7):
print(w)