[Python] Python read from file[Python] Python read from file
🎮
Game Chatroom
Week 10, 2026
//Paste your solution here if you want to share it publicl
with open("example.txt", "r") as f:
content = f.read()
words = content.split('\n')
for word in words:
if len(word) == 1:
continue
good = True
for c in word:
if c > 'f':
good = False
break
if good:
print(word)