自动化办公
FreeSpider公众号
全网同名
展开
-
使用Python对Excel进行读写
Python读取Excel import xlrd xlsx = xlrd.open_workbook('7月下旬入库表.xlsx') table = xlsx.sheet_by_index(0) # 通过sheet名查找:xlsx.sheet_by_name("7月下旬入库表") # 通过索引查找:xlsx.sheet_by_index(3) print(table.cell_value(0...原创 2019-04-30 15:30:15 · 582 阅读 · 0 评论 -
Python 复制Excel与设置格式
Python写入Excel携带格式 from xlutils.copy import copy import xlrd import xlwt #携带格式打开一个文件 tem_excel = xlrd.open_workbook('日统计.xls', formatting_info=True) #获取索引0的sheet 要不要无所谓 # tem_sheet = tem_excel.sheet_b...原创 2019-04-30 15:40:16 · 8742 阅读 · 0 评论