小白求助
small=x if (x<y and x<z and x<h) elif (y if (y<z and y<h)) else (z if z<h else h)为什么这样实现不了求四个值的最小值
small = x if (x < y and x < z) else (y if y < z else z)
这样三个值的能实现 像这种表达式不能包含 elif,只能包含 if 和 else。 zltzlt 发表于 2019-8-21 16:13
像这种表达式不能包含 elif,只能包含 if 和 else。
那最多就只能求三个值了吗 白起起 发表于 2019-8-21 16:30
那最多就只能求三个值了吗
是的。想求四个值或以上可以参考我写的一篇文章 https://fishc.com.cn/thread-145273-1-1.html zltzlt 发表于 2019-8-21 16:31
是的。想求四个值或以上可以参考我写的一篇文章 https://fishc.com.cn/thread-145273-1-1.html
谢谢啦
页:
[1]