1.型別錯誤
typeerror: must be str,notint
型別錯誤:必須是字串,不能是數字.
這種就是拼接的時候字串和數字混用了,應該把一方轉化為另一方
2.syntaxerror: invalid syntax
語法錯誤:無效的語法
解決辦法就是看報錯在哪一行,從這一行往上找錯誤3.indentationerror
: unindent does
notmatch
any
outer indentation level
縮排錯誤:未知縮排不匹配任何縮排等級
4.indexerror
: string index out of
range
索引錯誤:字串超出範圍
5.attributeerror
:'tuple'object
has no attribute
'remove'
屬性錯誤:元組物件沒有屬性'remove'
6.
keyerror:
'fond'
鍵值錯誤;沒有指定的鍵值'fond'
7.typeerror: pop expected at least
1arguments, got
0
型別錯誤:pop方法希望得到至少乙個引數,但是現在引數為0
python中常見錯誤
1.手誤造成的名字錯誤 nameerror 名字錯誤 如 nameerror name pint is not defined 2.多行 不能一行寫 syntaxerror 語法錯誤 如 syntaxerror invalid syntax 3.縮排錯誤 indentationerror unexp...
js中常見的錯誤型別
當 try 語句塊中的 出現錯誤時,會建立並丟擲乙個 error 物件,物件中包含錯誤型別和錯誤描述兩個屬性 error.response 錯誤型別 說明evalerror 使用 eval 函式時發出錯誤,會丟擲該錯誤 internalerror 由 j ascript 引擎內部錯誤導致的異常,會丟...
python中常見的部分錯誤
indentationerror 縮排錯誤 syntaxerror 語法錯誤 assertionerror 斷言語句 assert 失敗 attributeerror 嘗試訪問未知的物件屬性 eoferror 使用者輸入檔案末尾標誌eof ctrl d floatingpointerror 浮點計算...