So I am trying to make a calculator on python, and am getting an error saying "'continue' not properly in loop"
Here is the code:
try:
num1m = int(input("Select the first number --> "))
except ValueError:
print("That's no number!")
continue
try:
num2m = int(input("Select the second number --> "))
except ValueError:
print("That's no number!")
continue
num3m = (num1m * num2m)
str(num3m)
print("The sum is " + num3m + ".")
Can someone help me out, thanks :)