當前位置:成語大全網 - 書法字典 - Excel轉python字典

Excel轉python字典

1.操作步驟:

(1)安裝python官方Excel庫-& gt;xlrd

(2)獲取Excel文件的位置並讀取。

③閱讀表格

(4)讀取指定行和列的內容。

2.示例代碼

# -*-編碼:utf-8 -*-

導入xlrd

從日期時間導入日期,日期時間

def read_excel():

#文件位置

excel file = xlrd . open _ workbook(r‘c:\ Users \ Administrator \ Desktop \ test data . xlsx‘)

#獲取目標EXCEL文件的工作表名稱

打印ExcelFile.sheet_names()

# -

#獲取工作表內容1。根據表索引2。根據表名。

# sheet = excel file . sheet _ by _ index(1)

sheet = excel file . sheet _ by _ name(‘test case 002‘)

#打印工作表的名稱、行和列。

打印sheet.name,sheet.nrows,sheet.ncols

#獲取整行或整列的值

rows = sheet . row _ values(2)#第三行中的內容

Cols =工作表。col _ values(1)#第二列中的內容

打印列、行

#獲取單元格內容

打印sheet . cell(1,0)。value。encode(‘utf-8‘)

打印sheet . cell _ value(1,0)。編碼(‘utf-8‘)

打印sheet . row(1)【0】。value。encode(‘utf-8‘)

#打印單元格內容格式

打印sheet . cell(1,0)。ctype

if _ _ name _ _ = =‘_ _ main _ _‘:

read_excel()