Fix the code indentation.
Correct the error in the line while (chances != 0):.
Fix the is_guessed function:
pythonCopy code
def is_guessed(word, guessed_letter_list):
return all(letter in guessed_letter_list for letter in word)
Correct the conditional statement:
pythonCopy code
if...