我有一个 DateFrame 'tsod',现在我将它转换为 html:
tsod.to_html()
如何将其保存为文件?更好地保存为“.html”文件。
with open('my_file.html', 'w') as fo:
fo.write(tsod.to_html())
或者使用熊猫
tsod.to_html(open('my_file.html', 'w'))
或再次(感谢@andy-hayden)
with open('my_file.html', 'w') as fo:
tsod.to_html(fo)
截至当前版本的熊猫tsod.to_html('out.html')
工作正常。
a=tsod.to_html()
save(a,'path')
将工作