'Series' object has no attribute 'append'
时间: 2023-10-29 18:05:09 浏览: 103
Python3下错误AttributeError: ‘dict’ object has no attribute’iteritems‘的分析与解决
5星 · 资源好评率100%
"'Series' object has no attribute 'append'"错误是由于'Series'对象没有'append'方法引起的。根据引用中提到的,Dataframe是一个二维数组,而'Series'是其中的一维数组。因此,当你尝试在'Series'对象上使用'append'方法时,就会出现该错误。如果你想向'Series'对象中添加元素,你需要使用其他方法,如concat或者使用索引方式进行赋值操作。请确保你在操作'Series'对象时选择了正确的方法来实现你的需求。
阅读全文