利用字典实现输入两个数字,并输入加减乘除运算符号输出运算结果若输入其他符号则退出程序
时间: 2024-11-04 07:14:48 浏览: 8
两位数计算器
你可以使用一个字典来存储四种基本的数学运算及其对应的操作符。下面是一个简单的Python程序示例:
```python
operations = {
"+": lambda x, y: x + y,
"-": lambda x, y: x - y,
"*": lambda x, y: x * y,
"/": lambda x, y: x / y if y != 0 else "除数不能为零",
# 添加异常处理,防止除以零的情况
"exit": None
}
def calculate():
try:
num1 = float(input("请输入第一个数字: "))
operator = input("请输入运算符 (+, -, *, / 或者 exit): ")
if operator == "exit":
print("程序结束")
return
num2 = float(input("请输入第二个数字: "))
result = operations.get(operator)(num1, num2)
print("运算结果: ", result)
except ValueError:
print("输入错误,请输入有效的数字.")
calculate()
```
当用户输入"exit"时,程序将结束。如果输入的不是四种合法运算符之一,程序会捕获`ValueError`异常并提示输入错误。
阅读全文