溫馨提示×

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

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

python中如何使用if語句

發(fā)布時(shí)間:2021-07-05 16:02:51 來源:億速云 閱讀:377 作者:Leah 欄目:大數(shù)據(jù)

今天就跟大家聊聊有關(guān)python中如何使用if語句,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。


if語句:判斷語句,根據(jù)條件判斷是否繼續(xù)執(zhí)行


輸入:

#!/usr/bin/python 

# Filename: if.py


number = 23 

guess = int(input('Enter an integer : '))


if guess == number:    

    print('Congratulations, you guessed it.') 

# New block starts here    


    print('(but you do not win any prizes!)') 

# New block ends here 


elif guess < number:    

    print('No, it is a little higher than that') 

# Another block    

# You can do whatever you want in a block ... 


else:    

print('No, it is a little lower than that')    

# you must have guess > number to reach here


print('Done') 

# This last statement is always executed, after the if statement is executed 


第一遍運(yùn)行輸出:

 $ python if.py

Enter an integer : 50    

No, it is a little lower than that    

Done 

第二遍運(yùn)行輸出:

 $ python if.py    

Enter an integer : 22

No, it is a little higher than that    

Done

第三遍運(yùn)行輸出:

 $ python if.py    

Enter an integer : 23    

Congratulations, you guessed it.    (but you do not win any prizes!)    

Done 


解釋:

上面的執(zhí)行代碼時(shí)一個(gè)猜數(shù)字的小游戲,運(yùn)行程序后,提示輸入一個(gè)數(shù)字,用戶通過在控制臺(tái)輸入數(shù)字來執(zhí)行猜數(shù)字。


if語句在這里起判斷作用,如果條件滿足(即猜的數(shù)字相等)就提示猜對(duì)。

如果條件沒滿足會(huì)執(zhí)行if條件的分支語句elif,

2級(jí)判斷:猜的數(shù)字太小了

如果條件仍然沒滿足,繼續(xù)會(huì)執(zhí)行if條件的分支語句elif,3級(jí)判斷:猜的數(shù)字太大了


所有可判斷的條件執(zhí)行完畢,輸出結(jié)果。


輸入一個(gè)數(shù)字進(jìn)行if條件判斷,只會(huì)有1種輸出:要么是相等提示,猜對(duì);要么是大了;要么是小了。

輸入:

if True:    

print('Yes, it is true') 

輸出:

Yes, it is true

解釋:

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

if 條件 :

    print(“內(nèi)容”)


注意上面的冒號(hào),以及冒號(hào)后的語句縮進(jìn)。


看完上述內(nèi)容,你們對(duì)python中如何使用if語句有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

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

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

AI