1,nameerror語法錯誤
s還沒定義,給s賦值就行了
2,indexerror 索引錯誤
對於列表l1來說,只有4個元素,所以l1的index只能是0-3,當你所輸入的index不在這範圍,就會出現索引錯誤,只需修改你的index就行
3,attributeerror 成員屬性錯誤
4,syntaxerror 語法錯誤
這是乙個語法錯誤,對於if語句來說,結尾處應加:,所以只需要寫成 if a5,typeerror 型別錯誤
這是乙個型別錯誤,對於dic1來說是乙個字典型別,他的key值,比如說l1和『w』必須要求是可雜湊的,就是不可變的,但是l1是列表,是可變,所以報錯,列表是不能作為字典的key值
6,filenotfounderror檔名錯誤
我本來想以讀的形式開啟『aaa』這個檔案,但是不存在『aaa』這個檔案,所以出現錯誤
7,importerror 匯入錯誤
不存在process這個模組,所以出現匯入錯誤,
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中常見的部分錯誤
indentationerror 縮排錯誤 syntaxerror 語法錯誤 assertionerror 斷言語句 assert 失敗 attributeerror 嘗試訪問未知的物件屬性 eoferror 使用者輸入檔案末尾標誌eof ctrl d floatingpointerror 浮點計算...