programming-examples/python/Math/Print a random sample of words from the system dictionary.py

6 lines
188 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
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)