python 報錯集合

2021-09-25 02:58:45 字數 535 閱讀 2666

syntaxerror: invalid syntax

縮排問題

看一下有沒有沒對齊的一般就能解決了

typeerror: 『int』 object is not subscriptable

檢查一遍報錯的所在行,此報錯一般是在整數上加了下標,就是引用的物件不是數字是數字但是在使用的時候加了下標

就像 a = 3 b = a[0] 就會報錯

typeerror: unsupported operand type(s) for /: 『list』 and 『list』

這是乙個型別錯誤,意思是說python無法識別你使用的資訊,解決辦法可以是在錯誤出現之前列印出傳入的可能會出錯的

valueerror: i/o operation on closed file.

如描述的那樣,需要關閉文件,用close方法,或者說縮排有沒有對齊的問題

attributeerror: 『list』 object has no attribute 『split』

列表沒有split這個屬性,把他轉換為字串再用

python引數報錯 python 報錯資訊彙總

1.userwarning data validation extendion is not supported and will be removed 可能原因 第三方包與當前python版本不匹配,有部分擴充套件功能無法使用 2.non default parameter follows def...

Bug Cplex 不明原因報錯集合

vs c 工程新增cplex庫後,編譯出現很多錯誤的時候,不一定是 有問題,可能是 巨集定義衝突 example 1 往專案中新增 include直接報如下錯 1 c program files ibm ilog cplex studio127 concert include ilconcert i...

Linux多執行緒報錯集合

在試用linux 執行緒模組時,試用pthread create 函式。編譯命令為gcc main.c o test時,會出現如下錯誤 tmp ccivh3bu.o in function main main.c text 0x81 undefined reference to pthread cr...