(python基礎)__init__()方法、打印id、__str__()方法

<1>使用方式 def 類名: #初始化函數,用來完成一些默認的設定 def __init__(): pass <2>__init__()方法的調用 # 定義汽車類 class Car: def __init__(self): self.wheelNum = 4 self.color = '藍色' def move
相關文章
相關標籤/搜索