python 3元运算符

>>> 1 if(1) else 6
1
>>> 1 if(0) else 6
6
>>> 
原文地址:https://www.cnblogs.com/sea-stream/p/10801399.html