求助
请将以下代码修改为三元操作符实现三元操作符语法: a= x if (条件) else y 条件为真是 a=x ,否则 a=y
x, y, z = 6, 5, 4
if x < y:
small = x
if z < small:
small = z
elif y < z:
small = y
else:
small = z
是怎么做的 x, y, z = 6, 5, 4
small = x if x < y and x < z else y if y < x and y < z else z
print(small) jackz007 发表于 2021-3-16 11:09
这代码看着脑袋都疼
页:
[1]