以下是我所做的:想法是能够从 2 个数字中计算结果,具体取决于用户是否想要将它们相加、相减、相除或相乘。
print 'Welcome to my calculator program'
Equation = raw_input('You want to add, subtract, divide or multiply? '
firstno = raw_input ('Please enter first number ')
secondno = raw_input('Please enter second number ')
F1 = int(firstno)
F2 = int(secondno)
F3 = F1 + F2
print F1, '+' ,F2, '=' ,F3
我实际上并没有响应用户的输入,而是假设他会键入 add。如果用户想要减去而不是添加等等,我该如何对其进行编码,以便它会做出不同的反应?求救。