代码中没有输出

时间:2017-07-16 14:13:22

标签: python python-3.x if-statement calculator

在此代码中未收到任何输出:

num1=int(input("enter number 1"))
num2=int(input("enter nunber 2"))
op=input("enter operation , add ,sub ")
add=num1+num2
sub=num1-num2
if op ==add:
     print(add)
elif op == sub:
     print(sub)

我需要帮助才能让输出添加或减去用户输入。

1 个答案:

答案 0 :(得分:1)

使用if op == "add":比较字符串“add”,而不是变量add