python中switch语句
时间: 2023-11-09 13:02:09 浏览: 100
不同编程语言的switch语句
Python中没有内置的switch语句,但可以使用字典来模拟switch语句的功能。具体实现方式如下:
```python
def switch_case(case):
return {
'case1': 'result1',
'case2': 'result2',
'case3': 'result3'
}.get(case, 'default')
```
在上述代码中,我们定义了一个名为`switch_case`的函数,该函数接受一个参数`case`,并返回一个字典中对应`case`的值。如果字典中不存在对应的`case`,则返回默认值`default`。
阅读全文