我该怎么写
df.info() 归档?
df.info()
我想将此内容包含在excel文件的工作表中,我在其中写入df了using df.to_excel。
df
df.to_excel
根据文档(pandas.DataFrame.info),它返回一个
buf:可写缓冲区,默认为sys.stdout
我会尝试以下方法:
f = open('df.info', 'w+') df.info(buf=f) f.close()