Python 學習 - 初始化函數__init__

初始化方法__init__ 建立類的時候,__init__做爲初始化方法能夠用來設置對象屬性,並給予初始值,能夠是參數或者固定值web # coding:utf-8 # 關於初始化 __init__ 方法 class Dog: def __init__(self,new_name): print '初始化'
相關文章
相關標籤/搜索