[Python] python[Python] python
🕵️
The Secret Order
Week 3, 2026
//Paste your solution here if you want to share it publiclywith open("word_list.txt", "r") as file:
for line in file:
word = line.strip()
if word:
w = word.lower()
is_ascending = True
for i in range(len(w) - 1):
if w[i] > w[i + 1]:
is_ascending = False
break
if is_ascending:
print(word)