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的主要内容,如果未能解决你的问题,请参考以下文章