溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python:類的繼承

發(fā)布時間:2020-04-10 20:03:34 來源:網(wǎng)絡 閱讀:222 作者:luckercai 欄目:編程語言

class people:
def init(self,name,age):
self.name=name
self.age=age
def eat(self):
print("%s is eatting。。。。" % self.name)
def sleep(self):
print("%s is sleeping。。。。" % self.name)

class man(people): #繼承父類
def piao(self):
print("%s is piaoing。。。。。" % self.name)
def sleep(self):#重構父類的方法
people.sleep(self)
print("%s is sleeping and eat。。。。"%self.name)

class woman(people): #繼承父類
def get_birth(self):
print("%s is get_birth" % self.name)

m1=man("李明",28)
w1=woman("王麗娜",33)

m1.eat()
w1.eat()
m1.piao()
m1.sleep()
w1.get_birth()

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。

AI