python第三方库xlrd处理读取excel文件

准备环境:
1. python3.7.3  
2.安装xlrd   windows下一般使用pip install xlrd, 安装的xlrd版本:1.2.0
3.excel中的数据自己可以填写几行。

代码:
import xlrd
filename = 'ch10-data.xls'

open_workbook = xlrd.open_workbook(filename=filename)
choice_sheet = open_workbook.sheet_by_name('Sheet1')  #选择execl中的需要打开的sheet页

dataset = []
for r in range(choice_sheet.nrows):
    col = []
    for c in range(choice_sheet.ncols):
        col.append(choice_sheet.cell(r, c).value)
    dataset.append(col)
    print(dataset)

运行结果:

python第三方库xlrd处理读取excel文件_第1张图片

你可能感兴趣的:(python第三方库xlrd处理读取excel文件)