」工欲善其事,必先利其器。「—孔子《論語.錄靈公》
首頁 > 程式設計 > Python 中的循環控制語句:break、continue、pass

Python 中的循環控制語句:break、continue、pass

發佈於2024-11-07
瀏覽:586

Loop Control statements in Python : break, continue, pass

在Python中,我們有3種循環控制語句:break、continue和pass。

休息

當條件滿足時,循環中斷並跳脫循環。

for i in range(10):
    print(i)
    if i == 5:
        break

# It will print : 0 to 5 and once the condition satisfies, 
# then the loop breaks.

繼續

當條件滿足時,將跳過並進入循環中的下一個迭代。

for i in range(10):
    if i == 5:
        continue
    print(i)

# It will print : 0 to 9 except 5.

for i in range(10):
    if i != 5 :
        continue
    print(i)

# It will print just 5.

經過

它什麼也沒做。它充當佔位符。

for i in range(10):
    if i == 5:
        pass
    print(i)

# It will not do anything, even if the condition satisfies
版本聲明 本文轉載於:https://dev.to/debasmita-a/loop-control-statements-in-python-break-continue-pass-mmk?1如有侵犯,請洽[email protected]刪除
最新教學 更多>

免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。

Copyright© 2022 湘ICP备2022001581号-3