AttributeError: 'DataFrame' object has no attribute 'append'. Did you mean: '_append'?什么错误
时间: 2023-11-27 20:48:27 浏览: 332
# Pycharm关于AttributeError: ‘DataFrame’ object has no attribute ‘score’的错误
5星 · 资源好评率100%
这个错误是因为DataFrame对象没有名为'append'的属性或方法。相反,它有一个名为'_append'的方法。如果你想将一个DataFrame对象附加到另一个DataFrame对象的末尾,你可以使用'concat'方法。下面是一个例子:
```python
import pandas as pd
# 创建两个DataFrame对象
df1 = pd.DataFrame({'A': [1, 2], 'B': [3, 4]})
df2 = pd.DataFrame({'A': [5, 6], 'B': [7, 8]})
# 使用concat方法将它们连接起来
df3 = pd.concat([df1, df2])
# 输出结果
print(df3)
```
输出结果为:
```
A B
0 1 3
1 2 4
0 5 7
1 6 8
```
阅读全文