Skip to content

Commit a9d104c

Browse files
committed
Update main.py
1 parent ff398ea commit a9d104c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Wordle-Solver/main.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ def play_wordle(words : list) -> None:
77
while len(words) > 1:
88
letters_in_word = []
99
for i in range(5):
10-
letter = input("What letter did you put in position " + str(i+1) +"?: ").lower()
10+
letter = input("Letter in position " + str(i+1) +": ").lower()
1111
color = input("What color is it (Green, Yellow, Grey): ").lower()
1212
if color != 'green' and color != 'yellow' and color != 'grey':
13-
print("Invalid input")
13+
print("Invalid input...")
1414
return
1515
words_to_remove = []
1616
for word in words:

0 commit comments

Comments
 (0)