目錄python
條件成立時的返回值 if 條件 else 條件不成立時的返回值code
x = 10 y = 20 print(f"x if x > y else y: {x if x > y else y}")
x if x > y else y: 20