python风味之大杂烩

判断语句复制

>>> a = 3
>>> b = 3 if a == 2 else 4
>>> b
4
>>>
原文地址:https://www.cnblogs.com/kaituorensheng/p/4787639.html