[python]python錯誤集錦

風痕影默發表於2015-06-16
ValueError: invalid literal for int() with base 10: ''
不能將非數字字串轉換為整型
object has no attribute 
物件呼叫一個沒有的方法(內建或自定義)
TypeError: only length-1 arrays can be converted to Python scalars
只有長度為1的陣列才能被轉換
AttributeError: 'NotImplementedType' object has no attribute 'T'
關於NotImplementedType,這個有可能是在計算時將字元與數值運算會出現

 

相關文章