摘要: # encoding:utf-8 import pandas as pd class OpenMyXLS(): def __init__(self, filepath): self.filepath = filepath self.openxls() def openxls(self): df = 阅读全文
posted @ 2022-03-18 14:39 种太阳 阅读(993) 评论(0) 推荐(0) 编辑
摘要: 1 # encoding:utf-8 2 3 import pandas as pd 4 5 class OpenMyXLS(): 6 def __init__(self, filepath): 7 self.filepath = filepath 8 self.openxls() 9 10 def 阅读全文
posted @ 2022-03-18 13:22 种太阳 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 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 阅读全文
posted @ 2022-03-18 13:20 种太阳 阅读(131) 评论(0) 推荐(0) 编辑
摘要: #encoding:utf-8 """ 目标:将一组数组写入倒XLS文件中 """ import xlwt class myWriteXls(): def __init__(self,filename): self.filename = filename self.writexls() def wr 阅读全文
posted @ 2022-03-18 13:17 种太阳 阅读(559) 评论(0) 推荐(0) 编辑
摘要: #encoding:utf-8 ''' 目标:读取XLS文件中的内容 步骤: 1.打开已有XLS文件 2.获取sheet名称 3.获取对应sheet第一行数据 4.获取其他行数据 ''' import xlrd '''打开文件''' class OpenMyXLS(): def __init__(s 阅读全文
posted @ 2022-03-18 13:14 种太阳 阅读(460) 评论(0) 推荐(0) 编辑