Python3导入Excel文件

准备工作
安装所需要的模块,xlrd模块
操作步骤
①打开文件的工作簿
②根据名称找到工作表
③打印出读取的数据集合

代码:

import xlrd
from pprint import pprint

file = '1.xlsx'
wb = xlrd.open_workbook(filename=file)
ws = wb.sheet_by_name('Sheet1')
dataset = []
for r in range(ws.nrows):
    col = []
    for c in range(ws.ncols):
        col.append(ws.cell(r,c).value)
    dataset.append(col)
pprint(dataset)

你可能感兴趣的:(Python)