import random
lst = ["python", "is", "a", "programming", "language", "that",
"lets", "you", "work", "quickly", "and", "effectively"]
s = ""
for i in range(0, 8):
s += random.choice(lst) + " "
print(s)
'''
run:
quickly you quickly language programming lets programming a
'''