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 将列表中的数据帧写入多个 excel 文件