Name = input("What is your name: ")
true = input("Do you like a game (Y)es (N)o: ")
Game = command = ""
while command != "quit" and command != "QUIT":
command = input(">")
print("ECHO" , command)
if command == "quit" or "QUIT":
print("OK")
if true == "y":
print(Game)
if true == "n":
print("I thought you liked a game and I prepared")
This my code and idk why it’s not working fine you can run the code and check it yourself. Please help me out!! I hope to find a solution soon…
Thanks in advance!!