# 三元运算 是写法的一种进化a = 1b = 3# 历史写法if a < b: print(a)else: print(b)# 新写法val = a if a < b else bprint(val)使用三元运算,只用一行代码就实现了原先的三行,装逼专用!