[python][help] illegal target for varible annotation
not sure what im doing wrong here? I'm trying to reference variable "operand" to get a math function to perform the sum. only just started learning python variables havent learn if statements yet <code> num1 = input("enter the first number") operand = input(" what operation would you like to use") num2 = input("please enter your second number") if operand == "+": print(int(num1)+int(num2)) elif operand == "-": print(int(num1)-int(num2)) elif operand == "*": print(int(num1)*int(num2)) elif operand == "x": print(int(num1)*int(num2)) elif operand == "X": print(int(num1)*int(num2)) elif operand == "/": print(int(num1)/int(num2)) elif operand == "%": print(int(num1)%int(num2)) </code>