module 'pandas' has no attribute 'contact'
时间: 2023-12-21 15:31:08 浏览: 348
```python
import pandas as pd
df1 = pd.DataFrame({'A': [1, 2], 'B': [3, 4]})
df2 = pd.DataFrame({'A': [5, 6], 'B': [7, 8]})
result = pd.concat([df1, df2]) # 使用concat()函数将两个DataFrame进行连接
print(result)
```
阅读全文