死迴圈:
while 條件永遠為真:
例如while True:
(4個空格)執行碼
循環終止語句:
break
用於完全結束一個循環,跳出迴圈體執行迴圈後面的語句。
continue
continue只是終止本次循環,接著也執行後面的循環,break則完全終止循環。
範例:
i = 0 while True: i = i + 1 if i == 50: print 'I have got to the round 50th!' continue if i>70:break #结束死循环 print i
更多Python相關技術文章,請造訪Python教學欄位進行學習!
以上是怎麼寫有死循環的程序的詳細內容。更多資訊請關注PHP中文網其他相關文章!