用xlrd读Excel

import xlrd
import os
xlsx = xlrd.open_workbook(r'D:mycodefiles7月下旬入库表.xlsx')
# 用索引
table = xlsx.sheet_by_index(0)
# 用工作表名
# table = xlsx.sheet_by_name("7月下旬入库表")
# 读取第几行第几列
print(table.cell_value(1, 2))
print(table.cell(1,2).value)
print(table.row(1)[2].value)
原文地址:https://www.cnblogs.com/zhang-da/p/14216996.html