File "game.py", line 81, in <module>
File "game.py", line 33, in start
if a == "User name or Password is incorrect!":
ValueError: too many values to unpack (expected 2)
Here is the code generating the error:
choice = input("> ")
if choice == "1":
clear()
User=input("User Name: ")
Password=input("Password: ")
a, b=login(User, Password)
if a == "User name or Password is incorrect!":
print("User name or Password is incorrect!")
Here is that file.
Here is the full code.
Sorry it's really long, I was writing a long code and got this error