if a>b:
print(b,a)
else:
print(a,b)
等价于:
print(b,a) if a>b else print(a,b)
备注:print(b,a)多余两行就不能用三元运算符