Python獲取excel列表資料

2021-10-04 17:19:02 字數 670 閱讀 3806

import xlrd

import time

# 設定路徑

file_path = r'c:\users\viruser.v-desktop\desktop\worlddata\finds.xlsx'

# utf-8編碼

xlrd.book.encoding =

"utf-8"

# 獲取資料

data = xlrd.open_workbook(file_path)

# 獲取表sheet1資料

table = data.sheet_by_name(

'sheet1'

)# 獲取行數

nrows = table.nrows

# 獲取列數

ncols = table.ncols

# 獲取第五話資料

rowvalue = table.row_values(5)

for i in

range(0

, nrows)

:'''

取出來資料每一行就是乙個列表['','','']格式

'''time.sleep(

0.1)

city_name = table.row_values(i)[0

]# 獲取每一行第乙個資料

Java Poi獲取Excel下拉列表值

如下圖所示,需要獲取第一行 第一列單元格下拉列表值 1.新增poi所需依賴包 org.apache.poi poi3.17 org.apache.poi poi ooxml 3.17 2.具體實際 讀取excel param filepath public static void readexcel...

python操作excel獲取內容

背景 從excel表中獲取請求url 請求資料 請求型別 預期結果 因此,需要學會如何使用python從excel獲取這些資訊 coding utf 8 import xlrd 建立物件時,獲取對應excel 讀取excel行數 獲取單元格內容 class operationexcel def in...

python 獲取Excel中所有sheets名稱

在這裡不做過多的敘述,用 更為直觀的展示執行過程 第一種方法 獲取檔案的sheep name import pandas as pd sheep name pd.excelfile my.xlsx sheet names sheep name.sheet names print sheet name...