- 普通写法
a, b, c = 1, 2, 3
if a>b:
c = a
else:
c = b
- 三元表达式
c = a if a>b else b
- 二维列表,利用大小判断的0,1当作索引
c= [b, a][a > b]
- 利用逻辑运算符进行操作
c = (a>b and a or b)(括号加不加都行)
第四种利用and 的特点,若and前位置为假则直接判断为假,若or前位置为真则判断为真。
print(11 and 22) # 22
print(0 and 33) #0
print(11 or 22) #11
print(0 or 22) #22
print('' or 0) # 0
本文链接:http://nix.pub/article/ifelse/