这意味着你可以在Linux系统上用Python读取Excel文件!
使用示例:
打开工作表
import xlrd
wb = xlrd.open_workbook('mywbook.xls')
检查工作表名称
wb.sheet_names()
得到第一个工作表,或者通过索引顺序 或 工作表名称
sh = wb.sheet_by_index(0)
sh = wb.sheet_by_name(u'Sheet1')
循环行,得到你要索引的列表:
for rownum in range(sh.nrows):
print sh.row_values(rownum)
如果你只是想得到第一列:
first_column = sh.col_values(0)
索引独立的单元格:
cell_A1 = sh.cell(0,0).value
cell_C4 = sh.cell(2,3).value
在单元格输入一些内容:
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(错误)