溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python處理excel的案例

發(fā)布時(shí)間:2020-10-23 13:50:16 來源:億速云 閱讀:253 作者:小新 欄目:編程語言

這篇文章主要介紹python處理excel的案例,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!

電腦上必安裝的辦公軟件三大軟件:word、excel、ppt,其中excel是在處理數(shù)據(jù)效率最高,也是最為繁瑣的,因此高效快捷使用excel尤為重要,以下為大家介紹使用python更自動(dòng)化處理excel介紹:

一、準(zhǔn)備工具包:

1、xlrd:從Excel電子表格中提取數(shù)據(jù)

地址:https://xlrd.readthedocs.io/en/latest/

2、xlwt:將數(shù)據(jù)寫入Excel電子表格

doc地址:https://xlwt.readthedocs.org/en/latest/

3、xlutils:提供一組處理Excel文件的實(shí)用程序

doc地址:https://xlutils.readthedocs.io/en/latest/

二、用法操作:

1、從指定文件路徑讀取excel表格,進(jìn)行一定操作,然后保存到另一個(gè)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內(nèi)容

python處理excel的案例

# 根據(jù)age算出出生年份,增加一列
import datetime
import os
year = datetime.datetime.now().year#獲取當(dāng)前系統(tǒng)時(shí)間對(duì)應(yīng)的年份
df['birth'] = year-df['age']
df.to_excel('result.xlsx')#保存到當(dāng)前工作目錄,可以用os.getcwd()查看
#查看下此時(shí)df的內(nèi)容,可以看到已經(jīng)生成了birth這一列

python處理excel的案例

下面就用準(zhǔn)備的三個(gè)工具包,利用python操作excel。

三、Excel單元格操作

# 定義方法:讀取指定目錄下Excel文件某個(gè)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
 
# 定義方法:?jiǎn)卧裰导皹邮?
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代表是修改第幾個(gè)工作表里,從0開始算是第一個(gè)。此處修改第一個(gè)工作表
    '''
    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'])
    '''
    如果報(bào)錯(cuò) dict_items has no attributes sort
    把syle源碼中--alist.sort() 修改為----> sorted(alist)
    一共修改2次
    '''
    new_excel.save(file_path)
 
#參數(shù)詳解
# srows:合并的起始行數(shù)
# erows:合并的結(jié)束行數(shù)
# scols:合并的起始列數(shù)
# ecols:合并的結(jié)束列數(shù)
# value:合并單元格后的填充值
# style:合并后填充風(fēng)格:
#     font: name 宋體
#     height 280;
#     alignment: horiz centre
#     ... 與excel操作基本保持一致

注意:該方法是將需要直行的動(dòng)作保存到一個(gè)list中,真正的動(dòng)作還未執(zhí)行,執(zhí)行動(dòng)作是發(fā)生在excel_update方法中。

最終調(diào)用excel_update方法,傳入每個(gè)單元格需要進(jìn)行的操作和填充值的write_obj_list以及文件保存路徑file_path,最后就能在當(dāng)前工作目錄下生成想要的Excel結(jié)果文件。

注意:

1)write_obj_list支持用戶自定義。

2)write_obj_list也可以是根據(jù)excel_read方法讀取現(xiàn)有待修改的excel文件(可以維持原有表格的格式)而生成。

以上是python處理excel的案例的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI