三元运算符被称为条件表达式,python2.4以上有了三元操作
if_fat = True
state = 'is true' if if_fat else '我真的很瘦'
print(state)
元组条件表达式
a = True
print((1/0 , 2) [a])
在元组中先建数据,之后使用条件表达式来索引数据,
if-else 则是普通的逻辑树
来源:CSDN
作者:扣剑书生
链接:https://blog.csdn.net/weixin_44038167/article/details/103243776