Python中for else注意事项
假設有如下代碼:
for i in range(10):if i == 5:print 'found it! i = %s' % i else:print 'not found it ...'你期望的結果是,當找到5時打印出:
found it! i = 5實際上打印出來的結果為:
found it! i = 5 not found it ...顯然這不是我們期望的結果。
根據官方文檔說法:
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
大意是說當迭代的對象迭代完并為空時,位于else的子句將執行,而如果在for循環中含有break時則直接終止循環,并不會執行else子句。
所以正確的寫法應該為:
''' 遇到問題沒人解答?小編創建了一個Python學習交流QQ群:531509025 尋找有志同道合的小伙伴,互幫互助,群里還有不錯的視頻學習教程和PDF電子書! ''' for i in range(10):if i == 5:print 'found it! i = %s' % ibreak else:print 'not found it ...'當使用pylint檢測代碼時會提示Else clause on loop without a break statement (useless-else-on-loop)
所以養成使用pylint檢測代碼的習慣還是很有必要的,像這種邏輯錯誤不注意點還是很難發現的。
總結
以上是生活随笔為你收集整理的Python中for else注意事项的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 10道Python面试常见的问题
- 下一篇: Python基础教程:属性值设置和判断变