[Python] 函式 (function) 和 方法 (method)

Function

def function():
  ...

Method

class 底下有 method 和 attribute (屬性), 
即 method 便是 class 的 member function (成員函式)

class c:
  def method():
    ...

Last Updated on 2024/12/12 by A1go

目錄
Bitnami