Python三元操作符

16 浏览
0 Comments

Python三元操作符

这个问题已经有答案了

Python是否有三元条件运算符?

在Python中(特别是2.7版本)如何实现类似于var foo = (test) ? \"True\" : \"False\";的操作?

admin 更改状态以发布 2023年5月21日
0
0 Comments

这个看起来更像原始三元操作符:

foo=a and b or c

0
0 Comments

PEP 308添加了一个三元操作符:

foo = "True" if test else "False"

自Python 2.5版本以来就已经实现了该功能。

0