[Python] Python 10[Python] Python 10
🎮
Game Chatroom
Week 10, 2026
with open('Ubuntu_English', 'r') as file:
content = file.read().split()
for word in content:
if len(word) == 1:
continue
flag = True
for letter in word:
if ord(letter) > 102:
flag = False
if flag == True:
print(word)