{}
run-icon
main.py
Password=None attempts=[] while Password !="Cats": Password=input("Enter the password. ") attempts.append(Password) if Password != "Cats": print("your answer is incorrect. You have already guessed:") for i in attempts: print(i) print("Correct password. Welcome.") print("Now go touch grass")
Output