使用 pandas 从 python 行开始编写 xls

Writing xls from python row wise using pandas

我已经使用 pandas

成功创建了 .xlsx 文件

df = pd.DataFrame([list of array])

'''
: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。我不想要,我该如何删除它。

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

根据文档here

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

df.to_excel(writer, sheet_name='Sheet1_test',index=False)

这个可以参考这个https://medium.com/better-programming/using-python-pandas-with-excel-d5082102ca27post的媒体。