您好,登錄后才能下訂單哦!
Python 之 Excel 數(shù)據(jù)處理
一.背景。
運(yùn)維工作中,可能會遇到同事或者技術(shù)領(lǐng)導(dǎo)給Excel 數(shù)據(jù)進(jìn)行,數(shù)據(jù)抽取匯總或者進(jìn)行運(yùn)維自動化提供元數(shù)據(jù)使用,針對以上場景我們需要進(jìn)行python 處理,
二、Xlrd 模塊介紹;
2.1 讀Excel
Python語言中 xlrd是讀取excel表格數(shù)據(jù),支持 xlsx和xls 格式的excel表格;讀取Excel的擴(kuò)展工具。只能讀。
2.2 寫Excel
若寫入,要用xlwt,意為:xls文件write寫入庫。)
可以實(shí)現(xiàn)指定表單、指定單元格的讀取。
2.3 python3 三方模塊安裝方式:pip3 install xlrd,模塊導(dǎo)入方式:import xlrd
三. Python 讀Excel 實(shí)戰(zhàn)腳本;
3.1 原Excel 數(shù)據(jù)格式;
3.2 python 讀excel 代碼部分;
def readExcel(): import xlrd workbook=xlrd.open_workbook(r'/chj/devops/python/excel/file/app.xls') sheet_name = workbook.sheet_names() sheet = workbook.sheet_by_index(0) # sheet索引從0開始 data=[] rows = sheet.row_values(0) for i in list(range(2,sheet.nrows)): machineInfo=sheet.row_values(i) if machineInfo[2] == "ptest": data.append(machineInfo) return data resultData=readExcel() print(resultData)
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。