今天就跟大家聊聊有關python中的break語句和continue語句是怎樣的,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。
成都創(chuàng)新互聯專注于企業(yè)營銷型網站建設、網站重做改版、新巴爾虎右網站定制設計、自適應品牌網站建設、H5技術、購物商城網站建設、集團公司官網建設、外貿網站建設、高端網站制作、響應式網頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為新巴爾虎右等各大城市提供網站開發(fā)制作服務。
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)語句中,出現break,表示此時中斷此循環(huán)圈。
本例中,使用while循環(huán),while后條件為TURE,表示循環(huán)將會持續(xù)進行重復。
循環(huán)語句中,嵌套了一個if條件語句,當變量賦值為“quit”時,會執(zhí)行break操作。
前面4次的輸入內容都為數字,所以循環(huán)在持續(xù)進行,而第5次輸入內容與“quit”匹配,循環(huán)結束,輸出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)語句中,出現continue,表示此時中斷單次循環(huán),開始重新執(zhí)行。
本例中,while循環(huán)中,通過加入if條件對輸入內容的長度進行判斷。當輸入內容的長度小于3時會執(zhí)行contine,之后的print輸出語句始終沒有執(zhí)行。當輸入長度大于等于時未執(zhí)行continue語句,它之后的print輸出語句才有機會執(zhí)行。
小結:
break的使用時為了終止循環(huán)語句;
continue的使用時為了快速停止本輪循環(huán),重新開始執(zhí)行新一輪循環(huán)。
看完上述內容,你們對python中的break語句和continue語句是怎樣的有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注創(chuàng)新互聯行業(yè)資訊頻道,感謝大家的支持。