python中的三元运算规则

为真时的结果 if 判定条件 else为假时的结果

举个栗子

>>> a = 5>>> b = 3>>> c = a if a > b else b>>> c5>>> c = a if a < b else b>>> c3