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