将Pandas Dataframe作为xlsx
文件保存到磁盘时,有没有办法保存它,以便保存字符串的列以左对齐方式保存,而不是默认的“中心”对齐?
我目前正在使用以下内容保存我的DataFRame
writer = pd.ExcelWriter(path_to_file)
df.to_excel(writer, 'Sheet1')
writer.save()
答案 0 :(得分:2)
不幸的是,在使用Pandas to_excel()
编写数据时,目前无法应用Excel格式。
使用XlsxWriter作为Excel编写器引擎时,可以应用列格式。请参阅Working with Python Pandas and XlsxWriter。