import xlrd
book = xlrd.open_workbook('CJ_test.xls')
sheet = book.sheet_by_index(0)
print(sheet.row_values(0)) # 某一行的数据
print(sheet.col_values(0)) # 某一列的数据
print(sheet.cell(0, 0).value) # 某个单元格的数据
print(sheet.cell(1, 2).value) # 某个单元格的数据
print(sheet.nrows) # 总共有多少行
print(sheet.ncols) # 总共有多少列
# 整行的数据
# 整列的数据
# 某个单元格
# sheet = book.sheet_by_name()
for i in range(sheet.nrows):
print(sheet.row_values(i))
相关文章
- 12-27python中按照命名顺序读取图片
- 12-27Python中读取csv文件内容方法
- 12-27python-是否有一种方法可以从subprocess.Popen实例中读取字符,当它调用的进程尚未发出换行符时?
- 12-27python中csv文件的读取问题
- 12-27使用Python如何读取字节中的位?
- 12-27在文本文件Python中读取混合数据类型
- 12-27Python中的文件读取在Windows 7中应该停止
- 12-27在Python中读取输入的最快方法
- 12-27python-将numpy数组另存为二进制以从FORTRAN中读取
- 12-27python3 简单实现从csv文件中读取内容,并对内容进行分类统计