길/Python

Class Properties

7he8oy 2021. 2. 13. 08:54
sclass Pizza:
    def __init__(self, toppings):
        self.toppings = toppings

    @property
    def pineapple_allowed(self):
        return False

pizza = Pizza(["cheese", "tomato"])
print(pizza.pineapple_allowed) # < - False
pizza.pineapple_allowed = True # <- error