使用xlrd模組操作Excel

2022-06-01 04:15:07 字數 931 閱讀 9220

table = data.sheets()[0

]table = data.sheet_by_index(0

)print(table)

#獲取正行或是整列的值

con = table.row_values(0)#[356.0, '

星際牛仔

', '

カウボーイビバップ

', '

\n 26話 / 2023年10月23日 / 渡辺信一郎 / 矢立肇 / 川元利浩

', 9.1, '

(4021人評分)']

con = table.col_values(2)#['

cname

', '

星際牛仔

', '

攻殼機動隊 s.a.c. 2nd gig

', '

攻殼機動隊 stand alone complex

', '

新世紀福音戰士

', ]print(con)

#獲取行數與列數

nrows = table.nrows

print(nrows)#673

ncols = table.ncols

print(ncols)#6

#迴圈行列表資料

# for i in range(nrows):

# print(table.row_values(i))

#迴圈列列表資料

for i in range(ncols):

print(table.col_values(i))

#單元格索引

val = table.cell(5,5).value

# print(val2)

xlrd操作excel資料

import xlrd 開啟excel檔案 data xlrd.open workbook r 示例資料.xlsx xlrd中常用函式 table data.sheets 0 通過索引順序獲取sheet,返回xlrd.sheet.sheet 物件 print table table data.she...

Excel操作之讀取資料 基於xlrd模組

excel資料讀取操作是基於工作表物件進行的,所以需要首先獲取工作表物件,而工作表物件要通過工作簿物件獲取的。以下操作以以下表為例子 開啟檔案並返回乙個工作簿物件 workbook obj xlrd.open workbook c player.xlsx 獲取工作表名稱列表 print workbo...

python中xlrd模組匯入Excel檔案

importxlrd 匯入讀excel的包f xlrd.open workbook r e pypractice yun doc a.xlsx 開啟乙個工作簿 table f.sheets 0 選取excel中的第一張 nrows table.nrows 獲取行數 ncols table.ncols...