2020年1月15日 MRKJ 继承 page197

class CLASSNAME(base)

  ‘’‘类的帮助信息’‘’

  statement

 

class Fruit:
    color='green'
    def harvest(self,color):
        print('I am %s'%color)
        print(Fruit.color)

class Apple(Fruit):
    color = 'red'
    def __init__(self):
        print('apple')

class Orange(Fruit):
    color='yellow'
    def __init__(self):
        print('orange')

a=Apple()
o=Orange()
print(a.harvest(Apple.color))
print(o.harvest(Orange.color))

》》》》

apple
orange
I am red
green
None
I am yellow
green
None

posted @ 2020-01-15 22:46  小圣庄  阅读(113)  评论(0编辑  收藏  举报