条件
if else语句
if 条件:
执行行为
else:
执行行为
elif语句:
等同与c语言中的else i语句
if x>10:
print()
elif x=10:
print(2)
else:
print(3)
if else推导式
print(n if(n>0) else -n)
match-case语句:
等同于c语言中的switch-case
m=map(int(),input())
match m
case 1:
print("星期一")
case 2:
print("星期二")
case 3:
print("星期三")
case 4:
print("星期四")
case 5:
print("星期五")
标签:case,语句,elif,python,笔记,else,聪明,print,match From: https://www.cnblogs.com/liuyecheng/p/17862736.html一个 case 也可以设置多个匹配条件,条件使用 | 隔开