新聞中心
一、pandas的安裝:

創(chuàng)新互聯(lián)專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于成都網(wǎng)站設(shè)計(jì)、成都做網(wǎng)站、博州網(wǎng)絡(luò)推廣、小程序定制開(kāi)發(fā)、博州網(wǎng)絡(luò)營(yíng)銷(xiāo)、博州企業(yè)策劃、博州品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運(yùn)營(yíng)等,從售前售中售后,我們都將竭誠(chéng)為您服務(wù),您的肯定,是我們最大的嘉獎(jiǎng);創(chuàng)新互聯(lián)為所有大學(xué)生創(chuàng)業(yè)者提供博州建站搭建服務(wù),24小時(shí)服務(wù)熱線:18982081108,官方網(wǎng)址:www.cdcxhl.com
1.安裝pandas其實(shí)是非常簡(jiǎn)單的,pandas依賴處理Excel的xlrd模塊,所以我們需要提前安裝這個(gè),安裝命令是:pip install xlrd
2.開(kāi)始安裝pandas,安裝命令是:pip install pandas
二、讀取excel文件
webservice_testcase.xlsx結(jié)構(gòu)如下:
1.首先我們應(yīng)該先將這個(gè)模塊導(dǎo)入
import pandas as pd
2.讀取表單中的數(shù)據(jù):
sheet=pd.read_excel('test_data\\webservice_testcase.xlsx')#這個(gè)會(huì)直接默認(rèn)讀取到這個(gè)Excel的第一個(gè)表單
data=sheet.head()#默認(rèn)讀取前5行數(shù)據(jù)
print("獲取到所有的值:\n{0}".format(data))#格式化輸出 3.也可以通過(guò)指定表單名來(lái)讀取數(shù)據(jù)
sheet=pd.read_excel('test_data\\webservice_testcase.xlsx',sheet_name='userRegister')
data=sheet.head()#默認(rèn)讀取前5行數(shù)據(jù)
print("獲取到所有的值:\n{0}".format(data))#格式化輸出4.通過(guò)表單索引來(lái)指定要訪問(wèn)的表單,0表示第一個(gè)表單,也可以采用表單名和索引的雙重方式來(lái)定位表單,也可以同時(shí)定位多個(gè)表單,方式都羅列如下所示
sheet=pd.read_excel('test_data\\webservice_testcase.xlsx',sheet_name=['sendMCode','userRegister'])#可以通過(guò)表單名同時(shí)指定多個(gè)
# sheet=pd.read_excel('test_data\\webservice_testcase.xlsx',sheet_name=0)#可以通過(guò)表單索引來(lái)指定讀取的表單
# sheet=pd.read_excel('test_data\\webservice_testcase.xlsx',sheet_name=['sendMCode',1])#可以混合的方式來(lái)指定
# sheet=pd.read_excel('test_data\\webservice_testcase.xlsx',sheet_name=[1,2])#可以通過(guò)索引 同時(shí)指定多個(gè)
data=sheet.values#獲取所有的數(shù)據(jù),注意這里不能用head()方法
print("獲取到所有的值:\n{0}".format(data))#格式化輸出二、操作Excel中的行列
1.讀取制定的某一行數(shù)據(jù):
sheet=pd.read_excel('webservice_testcase.xlsx')#這個(gè)會(huì)直接默認(rèn)讀取到這個(gè)Excel的第一個(gè)表單
data=sheet.ix[0].values#0表示第一行 這里讀取數(shù)據(jù)并不包含表頭
print("讀取指定行的數(shù)據(jù):\n{0}".format(data))得到了如下結(jié)果:
2.讀取指定的多行:
sheet=pd.read_excel('test_data\\webservice_testcase.xlsx')#這個(gè)會(huì)直接默認(rèn)讀取到這個(gè)Excel的第一個(gè)表單
data=sheet.ix[[0,1]].values#0表示第一行 這里讀取數(shù)據(jù)并不包含表頭
print("讀取指定行的數(shù)據(jù):\n{0}".format(data))得到了如下的結(jié)果:
3.讀取指定行列的數(shù)據(jù):
sheet=pd.read_excel('test_data\\webservice_testcase.xlsx')#這個(gè)會(huì)直接默認(rèn)讀取到這個(gè)Excel的第一個(gè)表單
data=sheet.ix[0,1]#讀取第一行第二列的值
print("讀取指定行的數(shù)據(jù):\n{0}".format(data))得到了如下結(jié)果:
4.讀取指定的多行多列的值:
sheet=pd.read_excel('test_data\\webservice_testcase.xlsx')
data=sheet.ix[[1,2],['method','description']].values#讀取第二行第三行的method以及description列的值,這里需要嵌套列表
print("讀取指定行的數(shù)據(jù):\n{0}".format(data))得到了如下的結(jié)果:
5.讀取所有行指定的列的值:
sheet=pd.read_excel('test_data\\webservice_testcase.xlsx')
data=sheet.ix[:,['method','description']].values#讀取第二行第三行的method以及description列的值,這里需要嵌套列表
print("讀取指定行的數(shù)據(jù):\n{0}".format(data))得到了如下的結(jié)果:
6.獲取行號(hào)輸出:
sheet=pd.read_excel('test_data\\webservice_testcase.xlsx')
print("輸出行號(hào)列表",sheet.index.values)得到了如下的結(jié)果:
7.獲取列名輸出:
sheet=pd.read_excel('test_data\\webservice_testcase.xlsx')
print("輸出列標(biāo)題",sheet.columns.values)得到了如下的結(jié)果:
8.獲取指定行數(shù)的值:
sheet=pd.read_excel('test_data\\webservice_testcase.xlsx')
print("輸出值",sheet.sample(2).values)9.獲取指定列的值
sheet=pd.read_excel('test_data\\webservice_testcase.xlsx')
print("輸出值",sheet['description'].values)得到了如下的結(jié)果:
三、將excel中的每一條數(shù)據(jù)處理成字典,然后讓如一個(gè)列表中
test_data=[] sheet = pd.read_excel(self.file_name, sheet_name=key) for i in sheet.index.values:#獲取行號(hào)的索引,并對(duì)其進(jìn)行遍歷:#根據(jù)i來(lái)獲取每一行指定的數(shù)據(jù) 并利用to_dict轉(zhuǎn)成字典 row_data=sheet.ix[i,['id','method','description','url','param','ExpectedResult']].to_dict() test_data.append(row_data)
另外,我們可以把測(cè)試用例相關(guān)的東西寫(xiě)入一個(gè)配置文件當(dāng)中,讀取的時(shí)候可以根據(jù)配置文件中的內(nèi)容來(lái)進(jìn)行讀?。?/p>
配置文件如下:
[CASECONFIG]
sheet_list={'sendMCode':'all',
'userRegister':'all',
'verifyUserAuth':'all',
'bindBankCard':[]
} 配置文件處理.py代碼如下:
import configparser class ReadConfig: def read_config(self,file_path,section,option): cf=configparser.ConfigParser() cf.read(file_path,encoding="utf-8") value=cf.get(section,option) return value
project_path.py代碼如下:
import os Project_path=os.path.split(os.path.split(os.path.realpath(__file__))[0])[0] #配置文件路徑 case_config_path=os.path.join(Project_path,'config','case.config') #測(cè)試用例的路徑 test_cases_path=os.path.join(Project_path,'test_data','webservice_testcase.xlsx')
然后我們把讀取excel中的內(nèi)容封裝成一個(gè)類,代碼示例如下:
from common import project_pathfrom common.read_config import ReadConfig as RC import pandas as pd class DoExcel: def __init__(self,file_name): self.file_name=file_name self.sheet_list=eval(RC().read_config(project_path.case_config_path,'CASECONFIG','sheet_list')) def do_excel(self): test_data=[] for key in self.sheet_list: if self.sheet_list[key] == 'all': # 讀取所有的用例 sheet = pd.read_excel(self.file_name, sheet_name=key) for i in sheet.index.values:#獲取行號(hào)的索引,并對(duì)其進(jìn)行遍歷: #根據(jù)i來(lái)獲取每一行指定的數(shù)據(jù) 并利用to_dict轉(zhuǎn)成字典 row_data=sheet.ix[i,['id','method','description','url','param','ExpectedResult']].to_dict() test_data.append(row_data) else: sheet = pd.read_excel(self.file_name, sheet_name=key) for i in self.sheet_list[key]:#根據(jù)list中的標(biāo)號(hào)去讀取excel指定的用例 row_data=sheet.ix[i-1,['id','method','description','url','param','ExpectedResult']].to_dict() test_data.append(row_data) return test_data if __name__ == '__main__': test_data=DoExcel(project_path.test_cases_path).do_excel() print(test_data)
如果將配置改成如下內(nèi)容:
[CASECONFIG]
sheet_list={'sendMCode':[1,3,5],
'userRegister':[],
'verifyUserAuth':[],
'bindBankCard':[]
} 我們將會(huì)得到如下的運(yùn)行結(jié)果:
[{: 1, : , : , : , : , : },
{: 3, : , : , : , : , : },
{: 5, : , : , : , : , : }]到此,將excel中的用例數(shù)據(jù)讀取成為[{key1:value1},{key2:value2},...,{keyn:valuen}]這樣的形式已經(jīng)完畢,但是還有很多東西需要完善,比如用例中完成參數(shù)的替換,測(cè)試完成后回寫(xiě)測(cè)試數(shù)據(jù)到excel對(duì)應(yīng)的表格中等等內(nèi)容。
更多Python相關(guān)文章,請(qǐng)關(guān)注 Python自學(xué)網(wǎng)。
網(wǎng)站欄目:創(chuàng)新互聯(lián)Python教程:Python如何處理Excel中的數(shù)據(jù)
分享網(wǎng)址:http://www.5511xx.com/article/dpccjoj.html


咨詢
建站咨詢
