Python三元运算

1 result = 值1 if 条件 else 值2

如果条件为真,result = 值1

如果条件为假, result = 值2.

原文地址:https://www.cnblogs.com/cheese320/p/8782706.html