Python __init__初始化方法

Python __init__初始化方法。
Python __init__初始化方法_第1张图片

类在实例化对象的时候,就默认调用__init__初始化方法。
程序实例1:

class Animal(object):
    def __init__(self):
        print("我是动物")

你可能感兴趣的:(面向对象编程,类,python)