2014-09-26 70 views

回答

1

如果有for-loop2之後沒有代碼,break將有效啓動外循環。

for-loop1: 
    for-loop2: 
     if-statement: 
      break 
     <code here> 
     <code there> 

如果有額外的東西內環後,然後它會採取多一點這樣做。

for-loop1: 
    restart_loop1 = False 

    for-loop2: 
     if-statement: 
      restart_loop1 = True 
      break 

     <code here> 
     <code there> 

    if restart_loop1: 
     continue 

    <more code here> 
+0

這會終止程序還是隻會終止for-loop2?我正在做一個文件處理程序,很難跟蹤,因爲我沒有得到所有正確的輸出截至目前爲止:/ – 2014-09-26 15:04:26

+0

嘗試瞭解代碼將終止內部循環。 – Matthias 2014-09-26 15:05:40