Error AttributeError: 'DataFrame' object has no attribute 'append' how to solve

pandas updated

Change appendthe function to _appenda function, we only need to modify the function name, do not roll back the version of pandas

dataframe = dataframe._append()

Guess you like

Origin blog.csdn.net/weixin_45277161/article/details/131851922