@songying
2017-11-15T16:44:46.000000Z
字数 534
阅读 1234
python库
import xlrd # 导入模块
data = xlrd.open_workbook('example.xls') # 读取excel数据
# 通过索引数据获取
table = data.sheets()[0]
table = data.sheet_by_index(0)
# 通过名称获取
table = data.sheet_by_name(u'table_name')
table.row_values(i) # 获取第i行的数据
table.col_values(i) # 获取第i列的数据
nrows = table.nrows # 获取行数
ncols = table.ncols # 获取列数
for i in range(nrows) # 或者 ncols
print table.row_values(i)
cell_data = table.cell(row, col).value # 获取第row行,第col列的数据
cell_data = table.row(row)[col].value # 获取第row行,第col列的数据
cell_data = table.col(col)[row].value # 获取第col列,第row行的数据