python if else写在一行
python if else表达式可以写在一行,可以通过下方的实例代码来直观地展示:
>>> x = 1 if True else 0
>>> x
1
>>> y = 2 if False else 0
>>> y
0
>>> z = True if 1 > 0 else False
>>> z
True
实例代码解析
上方的x变量的赋值的实例代码,与下方的写法差不多:
>>> if True:
... x=1
... else:
... x=0
...
>>> x
1