溫馨提示×

溫馨提示×

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

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

python中的break語句和continue語句是怎樣的

發(fā)布時間:2021-12-02 17:52:56 來源:億速云 閱讀:154 作者:柒染 欄目:大數(shù)據(jù)

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


python入門-08 break語句和continue語句

break語句示例

輸入:


#!/usr/bin/python 

# Filename: break.py


while True:    

    s = (input('Enter something : '))    

    if s == 'quit':        

        break    

    print('Length of the string is', len(s)) 

print('Done')


輸出:

Enter something : Programming is fun    

Length of the string is 18    

Enter something : When the work is done    

Length of the string is 21

Enter something : if you wanna make your work also fun:    

Length of the string is 37    

Enter something :       use Python!    

Length of the string is 12    

Enter something : quit    

Done 

解釋:

循環(huán)語句中,出現(xiàn)break,表示此時中斷此循環(huán)圈。

本例中,使用while循環(huán),while后條件為TURE,表示循環(huán)將會持續(xù)進行重復(fù)。

循環(huán)語句中,嵌套了一個if條件語句,當(dāng)變量賦值為“quit”時,會執(zhí)行break操作。

前面4次的輸入內(nèi)容都為數(shù)字,所以循環(huán)在持續(xù)進行,而第5次輸入內(nèi)容與“quit”匹配,循環(huán)結(jié)束,輸出Done所有代碼執(zhí)行完畢。

continue語句

輸入:

#!/usr/bin/python 

# Filename: continue.py


while True:    

    s = input('Enter something : ')    

    if s == 'quit':        

        break    

    if len(s) < 3:        

        print('Too small')        

        continue    

    print('Input is of sufficient length')    

# Do other kinds of processing here... 


輸出:

Enter something : a    

Too small    

Enter something : 12    

Too small

Enter something : abc    

Input is of sufficient length    

Enter something : quit 

解釋:

循環(huán)語句中,出現(xiàn)continue,表示此時中斷單次循環(huán),開始重新執(zhí)行。

本例中,while循環(huán)中,通過加入if條件對輸入內(nèi)容的長度進行判斷。當(dāng)輸入內(nèi)容的長度小于3時會執(zhí)行contine,之后的print輸出語句始終沒有執(zhí)行。當(dāng)輸入長度大于等于時未執(zhí)行continue語句,它之后的print輸出語句才有機會執(zhí)行。


小結(jié):

break的使用時為了終止循環(huán)語句;

continue的使用時為了快速停止本輪循環(huán),重新開始執(zhí)行新一輪循環(huán)。

看完上述內(nèi)容,你們對python中的break語句和continue語句是怎樣的有進一步的了解嗎?如果還想了解更多知識或者相關(guān)內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細節(jié)

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

AI