使用python

时间:2018-07-15 07:58:46

标签: python html excel

from pandas import ExcelWriter
writer = ExcelWriter('PythonExport.xlsx')
parta.to_excel(writer,index=False)
writer.save()

This is the current situation

This is the desired outcome

如何使用python调整excel单元的宽度以清楚地看到所有单词?

我尝试了在stackoverflow上看到的其他方法,但它们对我不起作用。一个示例正在尝试“ ws.Columns.AutoFit()”,但我收到一条错误消息,说 AttributeError:“ _ XlsxWriter”对象没有属性“ Columns”

1 个答案:

答案 0 :(得分:0)

要使用set_column方法,您需要具有工作表对象。看看这将使输入的单元格大小为50:

~>
  

set_column()方法的参数:first_col,last_col,width,   格式(可选),选项(可选)

此外,您可以执行以下操作:

writer = pandas.ExcelWriter('PythonExport.xlsx')
parta.to_excel(writer, sheet_name='Sheet1')
workbook  = writer.book
worksheet = writer.sheets['Sheet1']
worksheet.set_column(1, 2, 50)
writer.save()