1.手誤造成的名字錯誤
nameerror:名字錯誤
如:nameerror: name 『pint』 is not defined
2.多行**不能一行寫
syntaxerror:語法錯誤
如:syntaxerror: invalid syntax
3.縮排錯誤
indentationerror:unexpected indent
縮排錯誤:不期望出現的縮排
4.中文錯誤
python2.x預設不支援中文,python3.x支援中文
syntaxerror:
解決辦法:python2可在第一行或者第二行新增 # -- coding: utf-8 --
Python 中常見的錯誤型別
1.型別錯誤 typeerror must be str,notint型別錯誤 必須是字串,不能是數字.這種就是拼接的時候字串和數字混用了,應該把一方轉化為另一方2.syntaxerror invalid syntax 語法錯誤 無效的語法解決辦法就是看報錯在哪一行,從這一行往上找錯誤3.inden...
python中常見的部分錯誤
indentationerror 縮排錯誤 syntaxerror 語法錯誤 assertionerror 斷言語句 assert 失敗 attributeerror 嘗試訪問未知的物件屬性 eoferror 使用者輸入檔案末尾標誌eof ctrl d floatingpointerror 浮點計算...
python程式編寫中常見錯誤
1,nameerror語法錯誤 s還沒定義,給s賦值就行了 2,indexerror 索引錯誤 對於列表l1來說,只有4個元素,所以l1的index只能是0 3,當你所輸入的index不在這範圍,就會出現索引錯誤,只需修改你的index就行 3,attributeerror 成員屬性錯誤 4,syn...