用python写一个简单计算器
时间: 2023-06-15 09:06:20 浏览: 99
python简单计算器
好的,下面是一个简单的计算器代码示例:
```python
def calculator():
operation = input("请选择要进行的运算(+、-、*、/):")
num1 = float(input("请输入第一个数字:"))
num2 = float(input("请输入第二个数字:"))
if operation == "+":
result = num1 + num2
elif operation == "-":
result = num1 - num2
elif operation == "*":
result = num1 * num2
elif operation == "/":
result = num1 / num2
else:
print("输入的运算符有误,请重新输入!")
calculator()
return
print(f"{num1} {operation} {num2} = {result}")
return
calculator()
```
运行结果示例:
```
请选择要进行的运算(+、-、*、/):+
请输入第一个数字:3.5
请输入第二个数字:2
3.5 + 2.0 = 5.5
```
阅读全文