2020年1月15日 MRKJ 继承 page197

Posted python1988

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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

以上是关于2020年1月15日 MRKJ 继承 page197的主要内容,如果未能解决你的问题,请参考以下文章

2020年1月2日 MRKJ page150 re模板

2020年1月6日 MRKJ page155 sub方法 替换字符串

2019年12月27日 MRKJ page119 集合

2019年12月23日 MRKJ 元祖推导式page107

2020年1月20日 MRKJ 模块

python如何求2020年第19周起止日期: 2020年第19周(5月4日-5月10日)?