list.append(line) ^^^^^^^^^^^ AttributeError: 'dict' object has no attribute 'append'
时间: 2023-11-07 10:55:43 浏览: 131
PythonLightenStyle 类设置基色代码报错.pdf
运行脚本文件报错的原因是在Python 3中,dict对象没有append方法,而你在代码中使用了dict对象的append方法,所以会出现AttributeError: 'dict' object has no attribute 'append'的错误。
你可以将错误发生的地方修改为使用list对象而不是dict对象,这样就可以使用append方法了。
阅读全文