Python有个第三方库--xlrd ,可以对excel文件进行读操作。
好处:因为Python是平台无关的,所以在非M$得电脑上也能用。
缺点:目前不支持office2007
安装方法:
1、去http://pypi.python.org/pypi/xlrd 下 载windows的安装程序,或者zip安装包
2、如果有安装setup_tools的话,可以用 esay_install xlrd 来安装
参考文档:
1、网上找的blog :http://tips.wbwb.net/read-excel-files-from-python/
2、官网API说明 :http://www.lexicon.net/sjmachin/xlrd.html
example:
import xlrd
wb = xlrd.open_workbook('book.xls') # 打开文件
sheetNames = wb.sheet_names() # 查看包含的工作表
# 获得工作表的两种方法
sh = wb.sheet_by_index(0)
sh = wb.sheet_by_name(u'Sheet1')
# 单元格的值
cellA1 = sh.cell(0,0)
cellA1Value = cellA1.value
#可以用cell_values(rowIndex, colIndex)替代上边两步,对行,列的操作类似
cellA1Value = sh.cell_values(0, 0)
# 对工作表行的操作
for rownum in range(sh.nrows):
rowValueList = sh.row_values(rownum)
print rowValueList
# 第一列的值
columnValueList = sh.col_values(0)
# 虽然有put_cell()但是没有感觉有什么用,xlrd主要是用来读excel,如果想写的话有PyExcelerator, 以后用到在志之
'''
在单元格输入一些内容:
row = 0
col = 0
ctype = 1 # 查看下面
value = 'asdf'
xf = 0 # 扩展的格式化 (默认是0)
sh.put_cell(row, col, ctype, value, xf)
sh.cell(0,0) # 文本:u'asdf'
sh.cell(0,0).value # 'asdf'
可选的类型ctype: 0 = empty(空), 1 = string(字符), 2 = number(数字), 3 = date(日期), 4 = boolean(布尔), 5 = error(错误)