Python三元运算符
可能重复:
Python中的三元条件运算符
var foo = (test) ? "True" : "False";
这在Python中看起来像什么?
使用Python 2.7,如果这有所作为。
PEP 308增加了一个三元运算符:
foo = "True" if test else "False"
从Python 2.5开始就已经实现了
这个看起来更像原始三元:
foo=a and b or c
链接地址: http://www.djcxy.com/p/7393.html