摘要:
# class Student: def __init__(self,name,age): self.name=name self.age=age def eat(self): print(self.name+'在吃饭') stu1=Student('张三',20) stu2=Student('李四 阅读全文
2022年9月11日 #
摘要:
class Student: #Student为类的名称(类名)由一个或多个单词组成,每个单词的首字母大写,其余小写 native_pace='吉林' #直接写在类里的变量,称为类属性 def __init__(self,name,age): self.name=name #self.name 称为 阅读全文
摘要:
#教育机构 :马士兵教育 #讲 师:杨淑娟 class Student: #Student为类的名称(类名)由一个或多个单词组成,每个单词的首字母大写,其余小写 native_pace='吉林' #直接写在类里的变量,称为类属性 def __init__(self,name,age): self.n 阅读全文
摘要:
#直接写在类里的变量,称为类属性 #类种的函数叫方法,同时必须 有self #静态方法@staticmethod, 静态方法中函数没有self #类方法@classmethod ,类方法必须同时拥有cls class Student: #Student为类的名称(类名)由一个或多个单词组成,每个单词 阅读全文