1. 程式人生 > >機器學習之python基礎15

機器學習之python基礎15

“”"
@theme 類
@time 2018/12/7
@author lz
@content 初始方法,同時設定初始值
“”"
class Cat:
def init(self,new_name):
print(1)
#self.屬性名=屬性的值
self.name=new_name

def  eat(self):
    print(2)

tom=Cat(“Tom”)
print(tom.name)
lazy_cat=Cat(“大懶貓”)
lazy_cat.eat()