三元运算

it2024-08-16  37

# 1.result = 值1 if 条件 else 值2 a=1 b=2 c=3 d=a if a>b else c print(d)
最新回复(0)