Python中for後接else的語法使用

0、背景

今天看到瞭一個比較詭異的寫法,for後直接跟瞭else語句,起初還以為是沒有縮進好,查詢後發現果然有這種語法,特此分享。之前寫過c++和Java,在for後接else還是第一次見。

1、試驗

# eg1
import numpy as np
for i in np.arange(5):
    print i
else:
    print("hello?")
# 0
# 1
# 2
# 3
# 4
# hello?

可以發現,在for正常結束後,break中的語句進行瞭執行。

# eg2
import numpy as np
for i in np.arange(5):
    print i
    if (i == 3):
        break
else:
    print("hello?")
# 0
# 1
# 2
# 3

在這個例子當中,i==3的時候break出瞭循環,然後else當中的語句就沒有執行。

2、總結

總結起來比較簡單,如果for循環正常結束,else中語句執行。如果是break的,則不執行。

工程性代碼寫的比較少,暫時沒有想到很好的場景,為瞭不對其他同學造成幹擾,這種形式還是少些一點較好。

官方文檔也有解釋:

When the items are exhausted (which is immediately when the sequence is empty), the suite in the else clause, if present, is executed, and the loop terminates.

A break statement executed in the first suite terminates the loop without executing the else clause’s suite. A continue statement executed in the first suite skips the rest of the suite and continues with the next item, or with the else clause if there was no next item.

https://docs.python.org/2/reference/compound_stmts.html#the-for-statement

補充:python裡for和else的搭配

用找質數作為代碼示例

for i in range(2,10):
    for n in range(2,i):
        if i % n == 0:
            #print(i, '=', n, '*', i//n)
            break
    else:
        print('found it %s' %i)

註意:這裡的 else 並不屬於 if 代碼塊

根據官方文檔的解釋理解的意思:當迭代的對象迭代完並為空時,位於else的語句將會執行,而如果在for循環裡有break時,則會直接終止循環,並不會執行else裡的代碼

寫一個簡單例子,用來輔助理解

for i in range(10):
    if i == 7:
        print('found it %s'%i)
        break
else:
    print('not found')

可以先運行代碼,看一下運行結果,然後將代碼塊裡的break註釋掉再運行一遍,與第一次運行的結果進行比較,就會發現不同

補充:python中for—else的用法,執行完for執行else

結束for循環後執行else

for i in range(5):
     print(i)
else:
    print("打印else")

以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。

推薦閱讀: