1.AttributeError: 'NoneType' object has no attribute 'group'python
import re s=r'<title>kobe<\title>' ret = re.search('<\w+><\\w+>',s) print(ret.group(0))
屬性錯誤: "NoneType"對象沒有屬性'group'
說明:search或者match返回回來的結果爲'None',是空類型,因此在調用group的時候報錯(說白了就是正則可能寫的不對,沒返回結果,就報錯)
2.StopIterationspa
li = [1,2,3,4] ss = li.__iter__() while 1: abc = ss.__next__() print(abc) Traceback (most recent call last): File "E://python彙總/123.py", line 84, in <module> abc = ss.__next__() StopIteration 生成器中止錯誤:是因爲生成器裏面沒有數據能被迭代出來的時候,會報次錯誤,要在返回或者輸出的地方作異常處理
3.error: command 'gcc' failed with exit status 1code
因爲沒有正確安裝Python開發環境致使
yum install python-devel
返回系列對象