下你所需,载你所想!
汇集开发技术源码资料

python读写excel文件实例代码

:8.207KB :1 :2021-12-27 16:16:56

部分简介

python读写excel文件示例源码如果开发者对于本文件有需要的可以参考PYReadWriteExcelDemo,根据名称获取Excel表格中的数据 参数:file:Excel文件路径。
#将list中的内容写入一个新的file文件
def testXlwt(file = 'new.xls', list = []):

book = xlwt.Workbook() #创建一个Excel
sheet1 = book.add_sheet('hello') #在其中创建一个名为hello的sheet
i = 0 #行序号
for app in list : #遍历list每一行
j = 0 #列序号
for x in app : #遍历该行中的每个内容(也就是每一列的)
sheet1.write(i, j, x) #在新sheet中的第i行第j列写入读取到的x值
j = j 1 #列号递增
i = i 1 #行号递增
# sheet1.write(0,0,'cloudox') #往sheet里第一行第一列写一个数据
# sheet1.write(1,0,'ox') #往sheet里第二行第一列写一个数据
book.save(file) #创建保存文件

python读写excel文件实例代码

热门推荐

相关文章