Help mi out wats wrong with this code | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Help mi out wats wrong with this code

# Write your code print("calculater") operator = input("enter operator either +, -, *, or divide") n1 = float(input("frist_number:")) n2 = float(input("second_number:")) if_operator == '+': print(n1, operator, n2, '+', n1+n2) elif operator == '/' : print(n1, operator, n2, '/', n1/n2) elif operator == '*' : print(n1, operator, n2, '*', n1*n2) else: print("invalid ")

5th May 2020, 2:36 PM
KAUTA Marvin
KAUTA Marvin - avatar
0 Answers