- 博客(3)
- 资源 (2)
- 收藏
- 关注
原创 套用Excel模板,一键完成漂亮样式
#套用Excel模板,一键完成漂亮样式 from xlutils.copy import copy import xlrd import xlwt #打开模版 tem_excel = xlrd.open_workbook('/Users/wu/Desktop/日统计.xls', formatting_info=True) tem_sheet = tem_excel.sheet_by_index(0) #复制模版 new_excel = copy(tem_excel) new_sheet = new_ex
2021-02-15 12:14:54 355
原创 读取aa表格的所有内容,写入aaaa表格
import xlrd, xlwt xls = xlrd.open_workbook('/Users/wu/Desktop/aa.xls') new_wb = xlwt.Workbook() worksheet = new_wb.add_sheet('aaaa') table = xls.sheet_by_index(0) for i in range(0, table.nrows): for j in range(0, table.ncols): print(table.c.
2021-02-13 14:14:59 119
原创 读写Excel
# 读Excel import xlrd xlsx = xlrd.open_workbook('/Users/wu/Desktop/wjh.xls') table = xlsx.sheet_by_index(0) # 通过sheet名查找:xlsx.sheet_by_name("7月下旬入库表") # 通过索引查找:xlsx.sheet_by_index(3) print(table.cell_value(0, 0)) # table.cell_value(1, 2) # print(table.ce
2021-02-10 21:22:58 176
xlutils.pdf
2021-02-15
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人