python case示例
时间: 2023-03-28 11:02:16 浏览: 97
python例子
以下是 Python 的 case 示例:
```
x = 2
case x:
match 1:
print("x is 1")
match 2:
print("x is 2")
match 3:
print("x is 3")
match _:
print("x is not 1, 2, or 3")
```
这是 Python 3.10 中引入的新特性,可以用来简化多个 if-elif 语句的写法。
阅读全文