py读取Excel表数据
摘要:
# 封装读取Excel表数据方法 import xlrd'''定义一个类'''class ExcelUtil(): def __init__(self,filePath, sheetName): self.data = xlrd.open_workbook(filePath) self.table 阅读全文
posted @ 2018-09-09 13:51 WapN 阅读(1357) 评论(0) 推荐(0) 编辑