摘要: from openpyxl import load_workbookimport pandas as pdclass Write_to_excel(): def __init__(self,src,sheet,df): if src is None or sheet is None or df is 阅读全文
posted @ 2021-01-29 17:24 yongqi-911 阅读(86) 评论(0) 推荐(0) 编辑
摘要: Python入门之类(class) 学习网址:https://www.cnblogs.com/chengd/articles/7287528.html class Foo: """初始化实例属性""" def __init__(self, name, age):#构造函数,类实例化是自动执行 sel 阅读全文
posted @ 2021-01-29 14:20 yongqi-911 阅读(23) 评论(0) 推荐(0) 编辑