python中三元表达式的语法如下
result = x if condition else y
另外一种三元表达式,比较少见
result = (x, y)[condition]
原文地址:https://www.cnblogs.com/vincent-sh/p/12687198.html
时间: 2024-10-08 02:29:45
python中三元表达式的语法如下
result = x if condition else y
另外一种三元表达式,比较少见
result = (x, y)[condition]
原文地址:https://www.cnblogs.com/vincent-sh/p/12687198.html