机器人
积分排行榜
Scratch
积分排行榜
Python
在线答题
积分排行榜
活跃排行榜
C++
在线答题
积分排行榜
活跃排行榜
网盘
链接
打字练习
Microbit
未登录
未登录
登录学习
作者:
徐泽涵
更新时间:
2024-05-25 10:42
浏览:
411次
点赞:
0次
热度:
20
class Cat(): #实例方法 def happy(self,h): self.h=h print(self.h+"\"happy happy happy!\"") #类方法 @classmethod def banana(cls): print("(Crying)") #静态方法 @staticmethod def oia(): print("oiiaoooiia") c=Cat() #对象调用实例方法/类方法/静态方法 c.happy("It's dancing and singing about") c.banana() c.oia() #类调用类方法/静态方法 Cat.banana() Cat.oia() #初始化方法 class CAT: def __init__(self,age,birthday): self.age=age self.birthday=birthday #析构 C=CAT("one handred thousand years old","Febrary the thirtyth") print(C.age)
点赞成功
分享作品
×