在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
以上是Python 中的循環控制語句:break、continue、pass的詳細內容。更多資訊請關注PHP中文網其他相關文章!