修改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的主要内容,如果未能解决你的问题,请参考以下文章

对excel表格修改怎么查看每次修改的内容和修改者

VBA批量修改excel格式

day7_修改excel

在excel中,修改单元格数据的方法有几种?

java修改Excel

excel中如何只用键盘修改单元格内容