Method & Property — Python

Method & Property Instance Method Method biasa yang mengakses self: class Circle: def __init__(self, radius): self.radius = radius def area(self): return 3.1415