随笔分类 -  python

摘要:1. 类的定义 经典类 class 类名 新式类 class 类名(父类名) 定义一个类: class teacher(object): pass #保障代码结构完整,用来占位 2. 类的实例化 ● 创建一个类 class Student(object): # 定义方法 def study(self 阅读全文
posted @ 2025-04-12 21:57 白森 阅读(9) 评论(0) 推荐(0)