python将数组写入excel文件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python将数组写入excel文件相关的知识,希望对你有一定的参考价值。

参考技术A # 将数据写入新文件
def data_write(file_path, datas):
f = xlwt.Workbook()
sheet1 = f.add_sheet(u'sheet1',cell_overwrite_ok=True) #创建sheet

#将数据写入第 i 行,第 j 列
i = 0
for data in datas:
for j in range(len(data)):
sheet1.write(i,j,data[j])
i = i + 1
f.save(file_path) #保存文件

以上是关于python将数组写入excel文件的主要内容,如果未能解决你的问题,请参考以下文章

Python对数据写入Execl文件并生成图表

Python:将图像和数据帧写入同一个 excel 文件

求助:使用Python将excel中的内容写入到txt文件

使用 Python 将列表中的数据帧写入多个 excel 文件

用python模糊检索EXCEL文件的内容,并写入新的EXCEL表?

Python将数据写入excel或者txt,读入csv格式或xls文件