Class Cat():
def __init__(self, color):
self.color = color # 顏色屬性
self.legs = “long” # 特徵屬性
self就是指本身自己,它會告訴類別目前是在設定哪一個物件的屬性。
Class Cat():
def __init__(self, color):
self.color = color # 顏色屬性
self.legs = “long” # 特徵屬性
def run(self):
print(f"My cat has long legs and can run fast {self. legs}.")