class study




class Person:
    def __init__(self,name,age):
        self.name = name
        self.age = age

    def __del__(self):
        print("person is reclaimed.")

    def wakeup(self,at):
        print("{0} wake up at {1} am".format(self.name,at))

mars = Person("xuefeifei", 30)
print(mars.name)
print(mars.age)
mars.wakeup(7)

 

posted @ 2021-12-08 10:36  feifei_tian  阅读(39)  评论(0编辑  收藏  举报