79320885

Date: 2024-12-31 22:32:50
Score: 1
Natty:
Report link

What you're looking for is a break statement in your loop to stop the rest of the execution:

if guess in guess_list:
    print("You already guessed this letter")
    break

A Great resource which explains this in great detail can be found here: https://www.programiz.com/python-programming/break-continue

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Starts with a question (0.5): What you
  • Low reputation (0.5):
Posted by: Kwright02