Question #911

What is the @property decorator used for?

@property is a built-in decorator for the property() function in Python. It is used to give "special" functionality to certain methods to make them act as getters, setters, or deleters when properties are defined in classes. (programiz.com/python-programming/property)


Comment on Disqus:

Question difficulty: 🔵🔵🔵🔵🔵


Similar questions: