indentationerror 縮排錯誤
syntaxerror 語法錯誤
assertionerror 斷言語句(assert)失敗
attributeerror 嘗試訪問未知的物件屬性
eoferror 使用者輸入檔案末尾標誌eof(ctrl+d
floatingpointerror 浮點計算錯誤
importerror 匯入模組失敗
indexerror 索引超出序列的範圍
keyerror 字典中查詢乙個不存在的關鍵字
memoryerror 記憶體溢位
nameerror 嘗試訪問乙個不存在的變數
overflowerror 數值運算超出最大限制
oserror 作業系統產生的異常
runtimeerror 一般的執行時錯誤
taberror tab和空格混合使用
systemerror python編譯器系統錯誤
typeerror 不同型別間的無效操作
valueerror 傳入無效的引數
python中常見錯誤
1.手誤造成的名字錯誤 nameerror 名字錯誤 如 nameerror name pint is not defined 2.多行 不能一行寫 syntaxerror 語法錯誤 如 syntaxerror invalid syntax 3.縮排錯誤 indentationerror unexp...
Python 中常見的錯誤型別
1.型別錯誤 typeerror must be str,notint型別錯誤 必須是字串,不能是數字.這種就是拼接的時候字串和數字混用了,應該把一方轉化為另一方2.syntaxerror invalid syntax 語法錯誤 無效的語法解決辦法就是看報錯在哪一行,從這一行往上找錯誤3.inden...
python程式編寫中常見錯誤
1,nameerror語法錯誤 s還沒定義,給s賦值就行了 2,indexerror 索引錯誤 對於列表l1來說,只有4個元素,所以l1的index只能是0 3,當你所輸入的index不在這範圍,就會出現索引錯誤,只需修改你的index就行 3,attributeerror 成員屬性錯誤 4,syn...