您的位置:首页 > 编程语言 > Python开发

python读取excel格式的文件

2014-03-06 18:41 741 查看
使用 xlrd 能够很方便的读取 excel 文件内容,而且这是个跨平台的库,能够在windows,linux/unix,等平台上面使用。
软件可以去这个地址http://www.lexicon.net/sjmachin/xlrd.htm下载。

简单例子

importxlrd

fname = "sample.xls"
bk = xlrd.open_workbook(fname)
shxrange = range(bk.nsheets)try:
sh = bk.sheet_by_name("Sheet1")except:
print"no sheet in %s named Sheet1"% fname
returnNone
nrows = sh.nrows
ncols = sh.ncolsprint"nrows %d, ncols %d"%(nrows,ncols)

cell_value = sh.cell_value(1,1)print cell_value

row_list = []for i inrange(1,nrows):
row_data = sh.row_values(i)
row_list.append(row_data)

xlrd 模块内容

详细的xlrd模块帮助在他的主页上http://www.lexicon.net/sjmachin/xlrd.html

excel 文件格式

如果想彻底研究excel的话,这边有讲解excel格式的文档:
http://sc.openoffice.org/excelfileformat.pdf

本文出自 “linux学习与交流” 博客,请务必保留此出处http://yangcan918.blog.51cto.com/5518117/1369418
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: