您好,登錄后才能下訂單哦!
今天小編給大家分享一下怎么用python實(shí)現(xiàn)讀取xlsx表格的相關(guān)知識(shí)點(diǎn),內(nèi)容詳細(xì),邏輯清晰,相信大部分人都還太了解這方面的知識(shí),所以分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后有所收獲,下面我們一起來(lái)了解一下吧。
快要過(guò)年了,現(xiàn)在是工作的事情也不想干,學(xué)習(xí)也完全學(xué)不進(jìn)去,關(guān)于xlsx的操作原本昨天已經(jīng)寫(xiě)好了,不過(guò)悲催的是,忘記發(fā)布了直接關(guān)瀏覽器關(guān)閉后發(fā)現(xiàn)已經(jīng)丟失了。
以下操作均對(duì)照改表格操作:
獲取sheet的方法
通過(guò)索引獲取sheet表格:
table = worbook.sheets()[0]
table = worbook.sheet_by_index(0)
通過(guò)sheet名稱(chēng)獲?。?/p>
table = worbook.sheet_by_name(sheet_name='case')
獲取xlsx中所有sheet:
table = worbook.sheet_names() print(table) 打印:case
獲取行和列
獲取sheet中有效行數(shù):
row = table.nrows print(row) 打?。?
獲取sheet中有效列數(shù):
col = table.ncols print(col) 打印:10
獲取一行中有多少列數(shù)據(jù):
col = table.row_len(0) print(col)
獲取指定行中的所有數(shù)據(jù):
''' rowx表示是獲取第幾行的數(shù)據(jù) start_col表示從索引為多少開(kāi)始,end_colx表示從索引為多少結(jié)束 end_colx為None表示結(jié)束沒(méi)有限制 獲取指定行中的數(shù)據(jù)并以列表的形式返回 ''' table_list = table.row_values(rowx=0, start_colx=0, end_colx=None) print(table_list) 打印:['run', 'headers', 'pre_case_id', 'pre_fields', 'request_body', 'expect_result', 'assert_type', 'pass', 'update_time', 'response']
獲取列中的數(shù)據(jù):
''' colx表示是獲取第幾列的數(shù)據(jù) start_rowx表示從索引為多少開(kāi)始,end_rowx表示索引為多少結(jié)束 end_rowx為None表示結(jié)束沒(méi)有限制 獲取指定列中的數(shù)據(jù)并以列表的形式返回 ''' table_list = table.col_values(colx=0, start_rowx=0, end_rowx=None) print(table_list) 打印:['run', 'yes', 'no', 'yes', 'no', 'no', 'no', 'no']
獲取單元格中值
獲取指定單元格中的值:
table = worbook.sheet_by_name(sheet_name='case') value = table.cell_value(rowx=0, colx=1) print(value) 打?。篽eaders
下面寫(xiě)個(gè)例子吧,就是將所有run為yes的行打印出來(lái),其實(shí)在日常工作中就是將run為yes的用例執(zhí)行一遍啦,雖然我們并不用excel來(lái)存儲(chǔ)測(cè)試用例。這里直接將其定義成一個(gè)裝飾器吧。
import xlrd class Readxlrd(): def __init__(self,func): self.func = func def __call__(self, *args, **kwargs): self.func(*args) worbook = xlrd.open_workbook(filename=args[0]) table = worbook.sheet_by_name(sheet_name=args[1]) row = table.nrows for i in range(row): if i >= 1: combined_dict = {} table_list = table.row_values(rowx=i, start_colx=0, end_colx=None) table_head = table.row_values(rowx=0, start_colx=0, end_colx=None) for k, v in zip(table_head, table_list): combined_dict[k] = v if combined_dict['run'] == 'yes': print(combined_dict) @Readxlrd def test(route,sheet): print('輸入的路徑為{},輸入的sheet是{}'.format(route,sheet)) 打印:輸入的路徑為C:\Users\86182\Desktop\case.xlsx,輸入的sheet是case {'run': 'yes', 'headers': '{"Content-Type": "application/x-www-form-urlencoded"}', 'pre_case_id': -1.0, 'pre_fields': '[]', 'request_body': '{"phone": "18262966312", "pwd": "123456"}', 'expect_result': '0', 'assert_type': 'code', 'pass': 'True', 'update_time': 44447.6884722222, 'response': ''} {'run': 'yes', 'headers': '{"token":"token"}', 'pre_case_id': 1.0, 'pre_fields': '[{"field":"token","scope":"header"}]', 'request_body': '{}', 'expect_result': '0', 'assert_type': 'code', 'pass': 'True', 'update_time': 44447.6892476852, 'response': ''}
以上就是“怎么用python實(shí)現(xiàn)讀取xlsx表格”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家閱讀完這篇文章都有很大的收獲,小編每天都會(huì)為大家更新不同的知識(shí),如果還想學(xué)習(xí)更多的知識(shí),請(qǐng)關(guān)注億速云行業(yè)資訊頻道。
免責(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)容。