怎么在另一个文件里面调用switch case
时间: 2023-12-01 13:52:59 浏览: 109
Python基于字典实现switch case函数调用
要在另一个文件中调用 switch case 语句,你需要将 switch case 语句放在一个函数或方法中,然后在另一个文件中调用该函数或方法。
例如,你可以在一个文件中编写一个名为 `calculate` 的函数,其中包含 switch case 语句:
```python
def calculate(operation, num1, num2):
result = 0
switcher = {
'add': num1 + num2,
'subtract': num1 - num2,
'multiply': num1 * num2,
'divide': num1 / num2
}
result = switcher.get(operation, "Invalid operation")
return result
```
然后,在另一个文件中,你可以导入该文件并调用该函数:
```python
import other_file
result = other_file.calculate('add', 5, 3)
print(result) # 输出:8
```
请注意,在导入另一个文件之前,你需要确保该文件已保存并位于你的 Python 路径中。
阅读全文