xlrd (2)獲取Excel文件位置并讀..."/>
溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

python讀取Excel實(shí)例詳解

發(fā)布時(shí)間:2020-09-22 17:45:34 來源:腳本之家 閱讀:236 作者:幸福清風(fēng) 欄目:開發(fā)技術(shù)

本文實(shí)例為大家分享了python讀取Excel實(shí)例的具體代碼,供大家參考,具體內(nèi)容如下

1.操作步驟:

(1)安裝python官方Excel庫-->xlrd

(2)獲取Excel文件位置并讀取

(3)讀取sheet

(4)讀取指定rows和cols內(nèi)容

2.示例代碼:

# -*- coding: utf-8 -*-
 
import xlrd 
from datetime import date,datetime
 
def read_excel():
 
#文件位置
ExcelFile=xlrd.open_workbook(r'C:\Users\Administrator\Desktop\TestData.xlsx') 
#獲取目標(biāo)EXCEL文件sheet名 
print ExcelFile.sheet_names()
 
#------------------------------------ 
#若有多個(gè)sheet,則需要指定讀取目標(biāo)sheet例如讀取sheet2 
#sheet2_name=ExcelFile.sheet_names()[1] 
#------------------------------------ 
#獲取sheet內(nèi)容【1.根據(jù)sheet索引2.根據(jù)sheet名稱】
#sheet=ExcelFile.sheet_by_index(1)
sheet=ExcelFile.sheet_by_name('TestCase002')
#打印sheet的名稱,行數(shù),列數(shù)
print sheet.name,sheet.nrows,sheet.ncols 
#獲取整行或者整列的值
rows=sheet.row_values(2)#第三行內(nèi)容
cols=sheet.col_values(1)#第二列內(nèi)容
print cols,rows 
#獲取單元格內(nèi)容
print sheet.cell(1,0).value.encode('utf-8') 
print sheet.cell_value(1,0).encode('utf-8') 
print sheet.row(1)[0].value.encode('utf-8') 
#打印單元格內(nèi)容格式
 
print sheet.cell(1,0).ctype
 
if__name__ =='__main__':
 
read_excel()

以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI