写Excel

Posted xxxxyanyan

tags:

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

import xlrd(读) ,xlwt(写),xultils(修改数据)

写Excel
import xlwt
book = xlwt.Workbook()
sheet = book.add_sheet(sheet)
sheet.write(0,0,学生姓名)
book.save("student.xls")#wps结尾用xls,用别的会打不开

 修改

from xultils import copy

book = xlrd.open_workbook(‘xxx.xls‘)

new = new_book.get_sheet(0)

sheet.write(0,0‘x‘)

new_book.save(‘xxx.xls‘)

 

以上是关于写Excel的主要内容,如果未能解决你的问题,请参考以下文章

ExcelHelper

第三周

xlrd学习使用

Excel--01--poi 简介

什么是ExcelMicrosoft Excel

3Python文件操作工具 xlsxwriter 工具