Untitled
unknown
plain_text
a year ago
131 B
4
Indexable
with open('words.txt', 'r') as f: for line in f: word = line.strip() if len(word) > 20: print(word)
Editor is loading...
Leave a Comment
with open('words.txt', 'r') as f: for line in f: word = line.strip() if len(word) > 20: print(word)