Untitled
unknown
plain_text
2 years ago
131 B
5
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)