摘要:
1 # encoding:utf-8 2 3 import pandas as pd 4 5 6 class QuChongFu(): 7 def __init__(self): 8 self.qcfxls() 9 10 def qcfxls(self): 11 # 读取excel中的数据 12 d 阅读全文
摘要:
#encoding:utf-8 """ 目标:将一组数组写入倒XLS文件中 """ import xlwt class myWriteXls(): def __init__(self,filename): self.filename = filename self.writexls() def wr 阅读全文
摘要:
#encoding:utf-8 ''' 目标:读取XLS文件中的内容 步骤: 1.打开已有XLS文件 2.获取sheet名称 3.获取对应sheet第一行数据 4.获取其他行数据 ''' import xlrd '''打开文件''' class OpenMyXLS(): def __init__(s 阅读全文