修改EXCEL
Posted 彼得潘jd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了修改EXCEL相关的知识,希望对你有一定的参考价值。
import xlrd
from xlutils import copy
# 先用xlrd模块,打开一个excel
book=xlrd.open_workbook(‘app_student.xls‘)
# 通过xlutils这个模块里面的copy方法,复制一份excek
new_book=copy.copy(book)
sheet=new_book.get_sheet(0) #获取sheet页
# sheet.write(0,0,‘编号‘)
# sheet.write(0,1,‘名字‘)
lis = [‘编号‘,‘名字‘,‘性别‘,‘年龄‘,‘地址‘,‘班级‘,‘手机号‘,‘金币‘]
for col, filed in enumerate(lis):
sheet.write(0, col, filed)
new_book.save(‘app_student.xls‘)
以上是关于修改EXCEL的主要内容,如果未能解决你的问题,请参考以下文章