We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff398ea commit a9d104cCopy full SHA for a9d104c
Wordle-Solver/main.py
@@ -7,10 +7,10 @@ def play_wordle(words : list) -> None:
7
while len(words) > 1:
8
letters_in_word = []
9
for i in range(5):
10
- letter = input("What letter did you put in position " + str(i+1) +"?: ").lower()
+ letter = input("Letter in position " + str(i+1) +": ").lower()
11
color = input("What color is it (Green, Yellow, Grey): ").lower()
12
if color != 'green' and color != 'yellow' and color != 'grey':
13
- print("Invalid input")
+ print("Invalid input...")
14
return
15
words_to_remove = []
16
for word in words:
0 commit comments