int' object has no attribute 'append'
时间: 2023-10-05 21:07:46 浏览: 106
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
这个错误通常发生在你试图向一个整数类型的对象使用`append`方法时。`append`方法是用于列表类型的,而不是整数类型的。你可以尝试将整数对象转换为列表对象,然后再使用`append`方法进行添加操作。或者,你可以使用其他适合整数类型的方法来实现你的需求。具体方法取决于你的具体目标和代码逻辑。
阅读全文