python常见错误总结

时间:2023-03-09 02:48:48
python常见错误总结

TypeError: 'module' object is not callable

模块未正确导入,层级关系没找对

缩进错误。

IndentationError: unindent does not match any outer indentation level

  缩进错误。没有对齐

解决办法:

  1.极有可能是空格和tab键混搭使用了,视图-显示符号-显示空格与制表符

引包错误

  自己写的py文件不要与第三方库重名

编码错误

  1、程序本身有编码,一般在程序的头部声明

  2、使用的IDE有编码,除了python idle

  3、读取外部数据or文件 decode(把其它编码的字符串转换成unicode编码) encode(把unicode编码转换成其它编码的字符串)

分析错误

看报错消息的首和尾