這篇文章主要介紹了python3.6中if語句的使用方法是什么,具有一定借鑒價(jià)值,需要的朋友可以參考下。希望大家閱讀完這篇文章后大有收獲。下面讓小編帶著大家一起了解一下。
成都創(chuàng)新互聯(lián)自2013年起,先為鶴山等服務(wù)建站,鶴山等地企業(yè),進(jìn)行企業(yè)商務(wù)咨詢服務(wù)。為鶴山企業(yè)網(wǎng)站制作PC+手機(jī)+微官網(wǎng)三網(wǎng)同步一站式服務(wù)解決您的所有建站問題。
python的if語句為條件判斷語句,習(xí)慣與else搭配使用。
if 結(jié)構(gòu)允許程序做出選擇,并根據(jù)不同的情況執(zhí)行不同的操作
if的用法
1.只有 if 進(jìn)行判斷
desserts = ['ice cream', 'chocolate', 'apple crisp', 'cookies'] favorite_dessert = 'apple crisp' hate_dessert = 'chocolate' for dessert in desserts: if dessert == favorite_dessert: print("%s is my favorite dessert!" % dessert.title())
2. if - else 進(jìn)行判斷
for dessert in desserts: # 比較運(yùn)算符(== 相等 、!= 不等、> 大于、>= 大于等于、< 小于、<=小于等于) if dessert == favorite_dessert: print("%s is my favorite dessert!" % dessert.title()) # elif => else + if 當(dāng)前值不符合上面 if 的判斷條件,執(zhí)行 elif 的判斷條件 else: print("I like %s." % dessert)
3. if - elif - else 進(jìn)行判斷,其中 elif 不是唯一的,可以根據(jù)需要添加,實(shí)現(xiàn)更細(xì)粒度的判斷
# 對不同的 dessert 輸出不完全相同的結(jié)果 for dessert in desserts: # 比較運(yùn)算符(== 相等 、!= 不等、> 大于、>= 大于等于、< 小于、<=小于等于) if dessert == favorite_dessert: print("%s is my favorite dessert!" % dessert.title()) # elif => else + if 當(dāng)前值不符合上面 if 的判斷條件,執(zhí)行 elif 的判斷條件 elif dessert == hate_dessert: print("I hate %s." % dessert) # 當(dāng)前值不符合上面所有的判斷條件,就執(zhí)行 else 里的語句 # 當(dāng)然如果這個(gè)else 不需要的話,可以不寫 else: print("I like %s." % dessert)
值得注意的一點(diǎn)是:當(dāng)整個(gè) if 判斷滿足某一個(gè)判斷條件時(shí),就不會(huì)再繼續(xù)判斷該判斷條件之后的判斷
4.特殊的判斷條件
if 0: # 其他數(shù)字都返回 True print("True.") else: print("False.") # 結(jié)果是這個(gè) if '': #其他的字符串,包括空格都返回 True print("True.") else: print("False.") # 結(jié)果是這個(gè) if None: # None 是 Python 中特殊的對象 print("True.") else: print("False.") # 結(jié)果是這個(gè) if 1: print("True.") # 結(jié)果是這個(gè) else: print("False.")
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享python3.6中if語句的使用方法是什么內(nèi)容對大家有幫助,同時(shí)也希望大家多多支持創(chuàng)新互聯(lián),關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,遇到問題就找創(chuàng)新互聯(lián),詳細(xì)的解決方法等著你來學(xué)習(xí)!