随笔分类 -  Python基础

摘要:# 类方法 # 如果 该class 没有要继承的类 则一般需要继承 object 基类 class ClassMethodBase(object): # 起手初始化 以示尊敬 def __init__(self, name): # 定义类属性 self.name = name # 定义类方法 # s 阅读全文
posted @ 2020-08-14 13:36 P_sara 阅读(101) 评论(0) 推荐(0)