Hey so I'm complete new to programming and python and can't figure out what I did wrong in my first programm. I tried googling it but every other solution I found and tried didn't work I always get the same error message. Could maybe someone tell me what I did wrong? :)
I want that I am able to multiply until I put no into the last input.
welcome = "Welcome to Multiplyer!!!"
print(welcome)
name = input("Hello, please input your name: ")
print("Hello " + name + ", thank you for using Multiplyer")
while True:
print("Select two numbers")
num1 = int(input("Number 1: "))
num2 = int(input("Number 2: "))
print(num1 * num2)
n = raw_input("Wanna multiply again? ")
if n.strip() == 'no':
break