當前位置:成語大全網 - 新華字典 - 如何用python從excel中同時提取兩個列的數據,並生成dict(用xlrd)

如何用python從excel中同時提取兩個列的數據,並生成dict(用xlrd)

import?xlrd

data?=?xlrd.open_workbook('excelFile.xls')

table?=?data.sheet_by_index(0)?#通過索引順序獲取工作表

colnumber_b?=?ord('B')-ord('A')

colnumber_g?=?ord('G')-ord('A')

scroe_dict?=?{}

for?i?in?range(100):?#前壹百行

score_dict[table.cell(i,colnumber_b).value]=table.cell(i,colnumber_g).value