溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python讀取excel文件夾的方法

發(fā)布時間:2020-08-24 15:59:52 來源:億速云 閱讀:205 作者:小新 欄目:編程語言

python讀取excel文件夾的方法?這個問題可能是我們?nèi)粘W習或工作經(jīng)常見到的。希望通過這個問題能讓你收獲頗深。下面是小編給大家?guī)淼膮⒖純?nèi)容,讓我們一起來看看吧!

python操作excel主要用到xlrd和xlwt這兩個庫,即xlrd是讀excel,xlwt是寫excel的庫。下面記錄python讀取excel.

python讀excel——xlrd

這個過程有幾個比較麻煩的問題,比如讀取日期、讀合并單元格內(nèi)容。下面先看看基本的操作:

首先讀一個excel文件,有兩個sheet,測試用第二個sheet,sheet2內(nèi)容如下:

python讀取excel文件夾的方法

python 對 excel基本的操作如下:

# -*- coding: utf-8 -*-import xlrd
import xlwtfrom datetime import date,datetimedef read_excel():    # 打開文件
    workbook = xlrd.open_workbook(r'F:\demo.xlsx')    # 獲取所有sheet
    print workbook.sheet_names() # [u'sheet1', u'sheet2']
    sheet2_name = workbook.sheet_names()[1]    # 根據(jù)sheet索引或者名稱獲取sheet內(nèi)容
    sheet2 = workbook.sheet_by_index(1) # sheet索引從0開始
    sheet2 = workbook.sheet_by_name('sheet2')    # sheet的名稱,行數(shù),列數(shù)
    print sheet2.name,sheet2.nrows,sheet2.ncols    # 獲取整行和整列的值(數(shù)組)
    rows = sheet2.row_values(3) # 獲取第四行內(nèi)容
    cols = sheet2.col_values(2) # 獲取第三列內(nèi)容
    print rows    print cols    # 獲取單元格內(nèi)容
    print sheet2.cell(1,0).value.encode('utf-8')    print sheet2.cell_value(1,0).encode('utf-8')    print sheet2.row(1)[0].value.encode('utf-8')    
    # 獲取單元格內(nèi)容的數(shù)據(jù)類型
    print sheet2.cell(1,0).ctypeif __name__ == '__main__':
    read_excel()

感謝各位的閱讀!看完上述內(nèi)容,你們對python讀取excel文件夾的方法大概了解了嗎?希望文章內(nèi)容對大家有所幫助。如果想了解更多相關文章內(nèi)容,歡迎關注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

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

AI