I am making a rather simple wordle clone for my class. It functions exactly the same as wordle, just in a CLI. However, I am getting a weird error when testing.
When executed, python returns
JavaScript
x
5
1
Traceback (most recent call last):
2
File "<string>", line 46, in <module>
3
File "<string>", line 19, in input_guess
4
NameError: name 'i' is not defined
5
The code is
JavaScript
1
25
25
1
def input_guess():
2
#gets input
3
while True:
4
guess = (str(input(f"Attempt {i + 1} >>> " ))).lower()
5
if len(guess) != 5 or guess == int:
6
print("Invalid input")
7
continue
8
else:
9
return guess.lower()
10
11
def split(word):
12
#splits word
13
return list(word)
14
15
while attempts < 6:
16
# wordle
17
guess = split(input_guess())
18
for i in guess:
19
if guess[i] == word[i]: #green
20
response[i] = guess[i]
21
if guess[i] in word and guess[i] != word[i]: # yellow
22
response[i] = "-"
23
if guess[i] not in word: #miss
24
response[i] = "_"
25
Why am I getting this error? What am I doing wrong? I can’t seem to wrap my head around it.
Cheers
Advertisement
Answer
Your file is being read logically, top to bottom. You don’t define ‘i’ until your ‘for’ loop inside your ‘while’. If you want ‘i’ to be accessible by input_guess, you need to either define it in a line before the function is defined or pass it in as a parameter into the function call, like
guess = split(input_guess(i))