?break退出循環(huán)——python
提問人:楊紫紅發(fā)布時間:2020-11-26
用 for 循環(huán)或者 while 循環(huán)時,如果要在循環(huán)體內直接退出循環(huán),可以使用 break 語句。
比如計算1至100的整數(shù)和,我們用while來實現(xiàn):
sum = 0
x = 1
while True:
sum = sum + x
x = x + 1
if x > 100:
break
print sum
咋一看, while True 就是一個死循環(huán),但是在循環(huán)體內,我們還判斷了 x > 100 條件成立時,用break語句退出循環(huán),這樣也可以實現(xiàn)循環(huán)的結束。
比如計算1至100的整數(shù)和,我們用while來實現(xiàn):
sum = 0
x = 1
while True:
sum = sum + x
x = x + 1
if x > 100:
break
print sum
咋一看, while True 就是一個死循環(huán),但是在循環(huán)體內,我們還判斷了 x > 100 條件成立時,用break語句退出循環(huán),這樣也可以實現(xiàn)循環(huán)的結束。
繼續(xù)查找其他問題的答案?
相關視頻回答
點擊加載更多評論>>