Python读写Excel

2018-09-29 03:59:17来源:博客园 阅读 ()

新老客户大回馈,云服务器低至5折

 读Excel

1 #打开Excek,xlsfile为Excel路径+文件名
2 boorRead  = xlrd.open_workbook(xlsfile)
3 #读取sheet,sheet_name为Excel中sheet的名称
4 sheetRead = boorRead.sheet_by_name(sheet_name) 
5 #读取单元格内容
6 data = sheetRead.cell_value(row, col)

 写Excel

1 #创建文件对象
2 wrbook = xlwt.Workbook(encoding='utf-8', style_compression=0)
3 #增加sheet
4 wrsheet = wrbook.add_sheet(sheet_name, cell_overwrite_ok=True)
5 #向单元格写数据,
6 wrsheet.write(row,col,data)
7 #保存文件
8 wrbook.save(xlsname)

修改已经存在的Excel文件

1 book = xlrd.open_workbook(xlsfile,formatting_info=True)
2 book_wr = copy(book)
3 sheet_wr = bookWr.get_sheet(sheet_name)
4 sheet_wr.write(row,clo,data)
5 book_wr.save(file_name)

 详细可参看:https://blog.csdn.net/u013045749/article/details/49910695

 

 

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Python面向对象基础

下一篇:Python网络编程Day29部分知识点