在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
免責聲明: 提供的所有資源部分來自互聯網,如果有侵犯您的版權或其他權益,請說明詳細緣由並提供版權或權益證明然後發到郵箱:[email protected] 我們會在第一時間內為您處理。
Copyright© 2022 湘ICP备2022001581号-3