python做excel自動化的方法:先安裝python工具包;然後從指定檔案路徑讀取excel表格,進行一定操作;接著儲存到另一個excel檔案;最終呼叫【excel_update】方法即可。
相關免費學習推薦:python影片教學
python做excel自動化的方法:
一、工具包
1、xlrd:從Excel電子表格中擷取資料 doc位址:https://xlrd.readthedocs.io/en/latest/
#2、xlwt:將資料寫入Excel電子表格 doc位址:https://xlwt.readthedocs.org/en /latest/
3、xlutils:提供一組處理Excel檔案的實用程式 doc位址:https://xlutils.readthedocs.io/en/latest/
#二、安裝
python -m pip install xlrd xlwt xlutils
三、基本用法
python操作excel的相關工具包可以具體到操作指定儲存格的填滿樣式、數值類型、數值大小等等。然而python操作excel需要一定pandas資料處理功底,後續將補上章節:pandas資料處理技能
1、從指定檔案路徑讀取excel表格,進行一定操作,然後儲存到另一個excel檔案:result.xlsx
import xlwt import xlrd from xlutils.copy import copy import pandas as pd from pandas import DataFrame,Series import os os.chdir('./') # 从指定文件路径读取excel表格 df = pd.read_excel('D:/mypaper/data/data.xlsx') # 查看df内容 # 根据age算出出生年份,增加一列 import datetime import os year = datetime.datetime.now().year#获取当前系统时间对应的年份 df['birth'] = year-df['age'] df.to_excel('result.xlsx')#保存到当前工作目录,可以用os.getcwd()查看 #查看下此时df的内容,可以看到已经生成了birth这一列
乍看好像只用到了pandas,還沒有用到上面介紹的三個工具包,下面介紹利用python操作excel底層
#2、單元格操作
# 定义方法:读取指定目录下Excel文件某个sheet单元格的值 def excel_read(file_path,table,x,y): data = xlrd.open_workbook(file_path) table = data.sheet_by_name(table) return table.cell(y,x).value # 定义方法:单元格值及样式 write_obj_list = [] def concat_obj(cols,rows,value): write_obj_list.append({'cols':cols,'rows':rows,'value':value,\ 'style':xlwt.easyxf('font: name 宋体,height 280;alignment: horiz centre')}) # 定义方法:合并单元格 def merge_unit(srows,erows,scols,ecols,value): write_obj_list.append({'id':'merge','srows':srows,'erows':erows,'scols':scols,\ 'ecols':ecols,'value':value,'style':xlwt.easyxf('font: name 宋体,height 280;alignment: horiz centre')}) # 定义方法:更新excel excel_update(file_path,write_obj_list,new_path): old_excel = xlrd.open_workbook(file_path, formatting_info=True) #管道作用 new_excel = copy(old_excel) ''' 通过get_sheet()获取的sheet有write()方法 ''' sheet1 = new_excel.get_sheet(0) ''' 1代表是修改第几个工作表里,从0开始算是第一个。此处修改第一个工作表 ''' for item in write_obj_list: if 'id' not in item.keys(): if 'style' in item.keys(): sheet1.write(item['rows'], item['cols'], item['value'],item['style']) else: sheet1.write(item['rows'], item['cols'], item['value']) else: if 'style' in item.keys(): sheet1.write_merge(item['srows'],item['erows'],item['scols'], item['ecols'], item['value'],item['style']) else: sheet1.write_merge(item['srows'],item['erows'],item['scols'], item['ecols'], item['value']) ''' 如果报错 dict_items has no attributes sort 把syle源码中--alist.sort() 修改为----> sorted(alist) 一共修改2次 ''' new_excel.save(file_path) #参数详解 # srows:合并的起始行数 # erows:合并的结束行数 # scols:合并的起始列数 # ecols:合并的结束列数 # value:合并单元格后的填充值 # style:合并后填充风格: # font: name 宋体 # height 280; # alignment: horiz centre # ... 与excel操作基本保持一致
注意:該方法只是將需要直行的動作保存到一個list中,真正的動作還未執行,執行動作是發生在excel_update方法中
最終呼叫excel_update方法,傳入每個單元格需要進行的操作和填充值的write_obj_list以及文件保存路徑file_path
就可以在當前工作目錄下產生想要的Excel結果文件。
注意:
1.write_obj_list支援使用者自訂
2.write_obj_list也可以是根據excel_read方法讀取現有待修改的excel檔案(可以維持原有表格的格式)而產生
python操作excel還有很多其他的基本方法,因篇幅的限制不再陳述和演示,想要深入研究的可以點擊上面的doc地址。
學會python操作excel的單元格、並且掌握上面的方法就可以基本實現excel的自動化報表操作了。
以上是python如何做excel自動化的詳細內容。更多資訊請關注PHP中文網其他相關文章!