您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關python中輸入else為什么會報錯,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。
if的用法
1.只有 if 進行判斷
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 進行判斷
for dessert in desserts: # 比較運算符(== 相等 、!= 不等、> 大于、>= 大于等于、< 小于、<=小于等于) if dessert == favorite_dessert: print("%s is my favorite dessert!" % dessert.title()) # elif => else + if 當前值不符合上面 if 的判斷條件,執行 elif 的判斷條件 else: print("I like %s." % dessert)
3. if - elif - else 進行判斷,其中 elif 不是唯一的,可以根據需要添加,實現更細粒度的判斷
# 對不同的 dessert 輸出不完全相同的結果 for dessert in desserts: # 比較運算符(== 相等 、!= 不等、> 大于、>= 大于等于、< 小于、<=小于等于) if dessert == favorite_dessert: print("%s is my favorite dessert!" % dessert.title()) # elif => else + if 當前值不符合上面 if 的判斷條件,執行 elif 的判斷條件 elif dessert == hate_dessert: print("I hate %s." % dessert) # 當前值不符合上面所有的判斷條件,就執行 else 里的語句 # 當然如果這個else 不需要的話,可以不寫 else: print("I like %s." % dessert)
值得注意的一點是:當整個 if 判斷滿足某一個判斷條件時,就不會再繼續判斷該判斷條件之后的判斷
4.特殊的判斷條件
if 0: # 其他數字都返回 True print("True.") else: print("False.") # 結果是這個 if '': #其他的字符串,包括空格都返回 True print("True.") else: print("False.") # 結果是這個 if None: # None 是 Python 中特殊的對象 print("True.") else: print("False.") # 結果是這個 if 1: print("True.") # 結果是這個 else: print("False.")
關于python中輸入else為什么會報錯就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。