使用pandas从python行明智地编写xls

问题描述 投票:0回答:1

我已经使用熊猫成功创建了.xlsx文件

df = pd.DataFrame([数组列表])

'''
:param data: Data Rows
:param filename: name of the file
:return:
'''
df = pd.DataFrame(data)

# my "Excel" file, which is an in-memory output file (buffer)
# for the new workbook
excel_file = BytesIO()

writer = pd.ExcelWriter(excel_file, engine='xlsxwriter')
df.to_excel(writer, sheet_name='Sheet1_test')

writer.save()
writer.close()

# important step, rewind the buffer or when it is read() you'll get nothing
# but an error message when you try to open your zero length file in Excel
excel_file.seek(0)

# set the mime type so that the browser knows what to do with the file
response = HttpResponse(excel_file.read(),
                        content_type='application/vnd.openxmlformats-officedocument.spreadsheetml.sheet')

# set the file name in the Content-Disposition header
response['Content-Disposition'] = 'attachment; filename=' + filename + '.xlsx'

return response

但是我在这里有问题,没有不必要的SNo。我不想要的,该如何删除。

There is SNo. as first row and column, How do i remove that?

有SNo。作为第一行和第一列,如何删除?

python django pandas xls xlsxwriter
1个回答
0
投票

根据文档here

to_excel默认设置索引以作为新列写入,使用索引为False

df.to_excel(writer, sheet_name='Sheet1_test',index=False)
© www.soinside.com 2019 - 2024. All rights reserved.