《老鸟python 系列》视频上线了,全网稀缺资源,涵盖python人工智能教程,爬虫教程,web教程,数据分析教程以及界面库和服务器教程,以及各个方向的主流实用项目,手把手带你从零开始进阶高手之路!点击 链接 查看详情
user_image
lanjunfu
2020年6月11日 22:43

class Bird(object):
    def __init__(self):
        self.birdname="bird"
class Human(object):
    def __init__(self):
        self.humanname="human"

class BirdHuman(object):
    def __init__(self):
        self.bird=Bird()
        self.human=Human()
    def speak(self):
        print('I am '+self.bird.birdname+" and "+self.human.humanname)
birdhuman=BirdHuman()
birdhuman.speak()

登录后评论