标签:使用 文件中 class 安装 命令行 获取 file 格式 行修改
# 命令行输入如下,进行联网在线安装
pip install xlutils
import os import xlrd from xlutils.copy import copy excel_path = os.path.join( os.path.dirname(__file__) , ‘data/test_data.xls‘ ) wb = xlrd.open_workbook( excel_path,formatting_info=True) # 创建工作薄对象 xlrd模块2007 2003 new_workbook = copy(wb) # 将new_workbook变成可写的对象 xlwt 对象 sheet = new_workbook.get_sheet(wb.sheet_names().index(‘Sheet1‘)) #sheet_by_name(‘Sheet1‘) sheet.write(2,3,60) new_workbook.save(excel_path)
备注:
1、要进行修改excel文件,先把excel文件设置成 2003版本的格式
2、由上例所示,其中formatting_info=True表示保留表格数据格式,设置后,后续的copy()方法复制新副本的时候会保留格式。
3、不能使用xlrd中的sheet_by_name、sheet_by_index方法,只能通过自带get_sheet()方法获取表格
参考链接:https://www.cnblogs.com/dream66/p/13342157.html
python_xlutils : python利用xlutils修改表格内容
标签:使用 文件中 class 安装 命令行 获取 file 格式 行修改
原文地址:https://www.cnblogs.com/123anqier-blog/p/13376479.html