溫馨提示×

溫馨提示×

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

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

Python學(xué)習(xí)筆記之Break和Continue用法分析

發(fā)布時間:2020-10-16 18:11:15 來源:腳本之家 閱讀:184 作者:Johnny丶me 欄目:開發(fā)技術(shù)

本文實例講述了Python學(xué)習(xí)筆記之Break和Continue用法。分享給大家供大家參考,具體如下:

Python 中的Break 和 Continue

  • break:控制何時循環(huán)應(yīng)該結(jié)束
  • continue: 跳過循環(huán)的一次迭代

Break 和 Continue[示例練習(xí)]

用 break 語句寫一個循環(huán),用于創(chuàng)建剛好長 140 個字符的字符串 news_ticker。你應(yīng)該通過添加 headlines 列表中的新聞標(biāo)題創(chuàng)建新聞提醒,在每個新聞標(biāo)題之間插入空格。如果有必要的話,從中間截斷最后一個新聞標(biāo)題,使 news_ticker 剛好長 140 個字符

headlines = ["Local Bear Eaten by Man",
       "Legislature Announces New Laws",
       "Peasant Discovers Violence Inherent in System",
       "Cat Rescues Fireman Stuck in Tree",
       "Brave Knight Runs Away",
       "Papperbok Review: Totally Triffic"]
news_ticker = ""
for item in headlines:
  news_ticker += item + " "
  if len(news_ticker) >= 140:
    news_ticker = news_ticker[:140]
    break
print(news_ticker) # Local Bear Eaten by Man Legislature Announces New Laws Peasant Discovers Violence Inherent in System Cat Rescues Fireman Stuck in Tree Brave
print(len(news_ticker)) # 140

運行結(jié)果:

Local Bear Eaten by Man Legislature Announces New Laws Peasant Discovers Violence Inherent in System Cat Rescues Fireman Stuck in Tree Brave
140

break與continue的區(qū)別:

1、break:終止,跳出,結(jié)束循環(huán)(可以作用在任何地方)。常與switch分支結(jié)構(gòu)合用。

2、continue:結(jié)束本次的循環(huán),進(jìn)入下一次的循環(huán)(只能運用到循環(huán)結(jié)構(gòu)中)。

關(guān)于Python相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《Python函數(shù)使用技巧總結(jié)》、《Python面向?qū)ο蟪绦蛟O(shè)計入門與進(jìn)階教程》、《Python數(shù)據(jù)結(jié)構(gòu)與算法教程》、《Python字符串操作技巧匯總》、《Python編碼操作技巧總結(jié)》及《Python入門與進(jìn)階經(jīng)典教程》

希望本文所述對大家Python程序設(shè)計有所幫助。

向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