python如何實現條件選擇
1、Python中使用if、elif、else來進行基礎的條件選擇操作:
ifx<0:
x=0
print('Negativechangedtozero')
elifx==0:
print('Zero')
else:
print('More'
2、Python同樣支持ternaryconditionaloperator,也可以使用Tuple來實現類似的效果:
#test需要返回True或者False
(falseValue,trueValue)[test]
#更安全的做法是進行強制判斷
(falseValue,trueValue)[test==True]
#或者使用bool類型轉換函數
(falseValue,trueValue)[bool()]
以上就是python實現條件選擇的方法,希望對大家有所幫助。更多Python學習教程請關注IT培訓機構:千鋒教育。