标签:imp work 读取数据 odi 获取 int top open exce
#-*-coding:utf8-*-
import xlrd
#代开excel文件读取数据
data = xlrd.open_workbook("C:\\Users\\hyl\\Desktop\\1.xls")
#通过索引顺序获取一个工作表
table = data.sheet_by_index(0)
#获取整行的值(数组) table.row_values(i)
#获取行数
nrows = table.nrows
for i in range(nrows):
print table.row_values(i)
print table.cell(0,0).value #输出单元格
标签:imp work 读取数据 odi 获取 int top open exce
原文地址:http://www.cnblogs.com/ylHe/p/6003390.html