溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

python中if語句的用法及if-else結(jié)構(gòu)怎么使用

發(fā)布時間:2020-08-25 11:49:47 來源:億速云 閱讀:193 作者:Leah 欄目:編程語言

python中if語句的用法及if-else結(jié)構(gòu)怎么使用?針對這個問題,這篇文章詳細(xì)介紹了相對應(yīng)的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

if 結(jié)構(gòu)

if 結(jié)構(gòu)允許程序做出選擇,并根據(jù)不同的情況執(zhí)行不同的操作

基本用法

比較運算符

根據(jù) PEP 8 標(biāo)準(zhǔn),比較運算符兩側(cè)應(yīng)該各有一個空格,比如:5 == 3。 PEP8 標(biāo)準(zhǔn)

==(相等):如果該運算符兩側(cè)的值完全相同則返回 True

!=(不等):與相等相反

print(5 == '5')
print(True == '1')
print(True == 1)
print('Eric'.lower() == 'eric'.lower())

>(大于):左側(cè)大于右側(cè)則輸出 True                         

<(小于):與大于相反

>=(大于等于):左側(cè)大于或者等于右側(cè)則輸出 True 

<=(小于等于):左側(cè)小于或者等于右側(cè)則輸出 True

print(5 > 3)
print(2 > True)
print(True > False)

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:
    # 比較運算符(== 相等 、!= 不等、> 大于、>= 大于等于、< 小于、<=小于等于)
    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ù)需要添加,實現(xiàn)更細(xì)粒度的判斷

# 對不同的 dessert 輸出不完全相同的結(jié)果
for dessert in desserts:
    # 比較運算符(== 相等 、!= 不等、> 大于、>= 大于等于、< 小于、<=小于等于)
    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)然如果這個else 不需要的話,可以不寫
    else:
        print("I like %s." % dessert)

值得注意的一點是:當(dāng)整個 if 判斷滿足某一個判斷條件時,就不會再繼續(xù)判斷該判斷條件之后的判斷

4.特殊的判斷條件

if 0: # 其他數(shù)字都返回 True
    print("True.")
else:
    print("False.") # 結(jié)果是這個
    
if '': #其他的字符串,包括空格都返回 True
    print("True.")
else:
    print("False.") # 結(jié)果是這個
    
if None: # None 是 Python 中特殊的對象  
    print("True.")
else:
    print("False.") # 結(jié)果是這個
    
if 1:
    print("True.") # 結(jié)果是這個
else:
    print("False.")

關(guān)于python中if語句的用法及if-else結(jié)構(gòu)怎么使用問題的解答就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關(guān)注億速云行業(yè)資訊頻道了解更多相關(guān)知識。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI