写个可以计算加减乘除的函数
时间: 2023-12-03 13:03:34 浏览: 152
好的,我可以帮你写一个可以计算加减乘除的函数。以下是 Python 代码实现:
```python
def calculate(num1, operator, num2):
if operator == '+':
return num1 + num2
elif operator == '-':
return num1 - num2
elif operator == '*':
return num1 * num2
elif operator == '/':
if num2 == 0:
return "Divide By Zero Error"
else:
return num1 / num2
else:
return "Invalid Operator"
```
这个函数接受三个参数:num1(第一个数字),operator(运算符),num2(第二个数字),并根据运算符进行相应的计算。如果运算符无效,则返回 "Invalid Operator"。如果在除法运算时第二个数字为零,则返回 "Divide By Zero Error"。
阅读全文