@ -18,10 +18,11 @@ def poetry():
mediumwords.append(word)
else:
longwords.append(word)
print(shortwords)
# Pick one from each list of words
line = (random.choice(shortwords),
random.choice(mediumwords),
random.choice(longwords))
# Join into a sentence
result = " ".join(line)
return result