set' object has no attribute 'append'
时间: 2023-11-13 10:04:59 浏览: 176
AttributeError: ‘NoneType’ object has no attribute ‘children’ 错误
5星 · 资源好评率100%
这个错误是由于在Python中,set对象没有append()方法,而只有list对象才有。如果你尝试在set对象上调用append()方法,就会出现类似于“AttributeError: 'set' object has no attribute 'append'”的错误。解决这个问题的方法是使用set对象的add()方法来添加元素,而不是使用append()方法。
阅读全文