DtypeWarning: Columns (7) have mixed types.Specify dtype option on import or set low_memory=False.错误

table_Summary=pd.read_csv("文件")
修改为
table_Summary=pd.read_csv("文件" ,low_memory=False)

猜你喜欢

转载自blog.csdn.net/weixin_45631815/article/details/112134338