如:不使用三目运算
a = 5 b = 8 if a > b : print (a) else: print(b)
使用三目运算符:
a = 5 b = 8 print(a if a>b else b)