本篇文章介紹如何使用xlrd來讀取Excel表格中的內容,xlrd是第三方庫,所以在使用前我們需要安裝xlrd。另外我們一般會使用xlwt來寫Excel,所以下一篇文章我們會來介紹如何使用xlwt來寫Excel。xlrd下載:xlrd 0.8.0
安裝xlrd
安裝xlrd,只需運行setup即可,另外你也可以直接解壓縮到你的project中,也可以直接用
xlrd的API
獲取Excel,這里稱之為work book
open_workbook(file_name)
獲取指定的Sheet,有兩種方式
sheet = xls.sheet_by_index(sheet_no)?
sheet = xls.sheet_by_name(sheet_name)
獲取整行和整列的值(數組)
sheet.row_values(i)??
sheet.col_values(i)
獲取總行數和總列數
nrows = sheet.nrows??
ncols = sheet.ncols
使用xlrd
使用xlrd這里就用一個簡單的例子示例下:
# -*- coding: utf-8 -*-?
'''''?
Created on 2012-12-14?
?
@author:? walfred
@module: XLRDPkg.read?
@description:
'''???
import os?
import types?
import xlrd as ExcelRead?
?
def readXLS(file_name):?
??? if os.path.isfile(file_name):?
??????? try:?
??????????? xls = ExcelRead.open_workbook(file_name)?
??????????? sheet = xls.sheet_by_index(0)?
??????? except Exception, e:?
??????????? print "open %s error, error is %s" %(file_name, e)?
??????????? return?
?
??? rows_cnt = sheet.nrows?
??? for row in range(1, rows_cnt):?
??????? name = sheet.row_values(row)[0].encode("utf-8").strip()?
??????? sex = sheet.row_values(row)[1].encode("utf-8").strip()?
??????? age = sheet.row_values(row)[2]?
??????? if type(age) is types.FloatType:#判讀下類型?
??????????? no = str(int(age))?
??????? else:?
??????????? age = no.encode("utf-8").strip()?
?
??????? country = sheet.row_values(row)[3].encode("utf-8").strip()?
??????? print "Name: %s, Sex: %s, Age: %s, Country: %s" %(name, sex, age, country)?
?
if __name__ == "__main__":?
??? readXLS("./test_read.xls");
很easy吧,需要說明的是,目前xlrd只支持95-03版本的MS Excel,所以使用之前需要核對自己的word版本。
更多文章、技術交流、商務合作、聯系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
