用pathon语句编一个运算程序
时间: 2024-09-19 07:04:13 浏览: 32
使用Python的判断语句模拟三目运算
在Python中编写一个基本的运算程序,比如可以创建一个函数来进行加法、减法、乘法和除法操作。这里是一个简单的例子:
```python
def arithmetic_operations(num1, num2, operator):
if operator == '+':
result = num1 + num2
elif operator == '-':
result = num1 - num2
elif operator == '*':
result = num1 * num2
elif operator == '/':
# 需要考虑除数为0的情况
if num2 != 0:
result = num1 / num2
else:
print("错误:除数不能为零")
return None
else:
print("错误:无效的操作符")
return None
return result
# 使用示例
num1 = float(input("请输入第一个数字:"))
operator = input("请输入运算符 (+, -, *, /):")
num2 = float(input("请输入第二个数字:"))
result = arithmetic_operations(num1, num2, operator)
if result is not None:
print(f"{num1} {operator} {num2} 的结果是:{result}")
阅读全文