0

如何在运算中使用算术运算符(由用户作为字符串输入)?我可以打印操作本身,但我想打印解决方案!

这是我笨拙的尝试:

# Initialise variables

x = 2
y = 3

# Prompt the user for an arithmetic operator

operator = input("Please enter  *,  /,  +,  or  - : ")

# Calculate the operation

result = (str(x) + operator + str(y))

# Display the result

print(result)
4

1 回答 1

4

使用operatormodule,它具有执行与算术运算相同的运算的功能。

import operator
ops = {'*': operator.mul, '/': operator.div, '+': operator.add, '-': operator.sub}

op = input("Please enter  *,  /,  +,  or  - : ")
result = ops[op](x, y)
于 2013-03-20T10:45:49.160 回答