I am generally confused about the difference between a "property" and an "attribute", and can't find a great resource to concisely detail the differences.
|
In general speaking terms a property and an attribute are the same thing. However, there is a property decorator in Python which provides getter/setter access to an attribute (or other data).
|
|||
|
|
|
Properties are a special kind of attribute. Basically, when Python encounters the following code:
it looks up More information about Python's data model and descriptors. |
||||
|
|
With a property you have complete control on his getter, setter and deleter methods, thing you don't have (if not using caveats) with an attribute.
|
|||||
|
|
The property allows you to get and set values like you would normal attributes, but underneath there is a method being called translating it into a getter and setter for you. It's really just a convenience to cut down on the boilerplate of calling getters and setters. Lets say for example, you had a class that held some x and y coordinates for something you needed. To set them you might want to do something like:
That is much easier to look at and think about than writing:
The problem is, what if one day your class changes such that you need to offset your x and y by some value? Now you would need to go in and change your class definition and all of the code that calls it, which could be really time consuming and error prone. The property allows you to use the former syntax while giving you the flexibility of change of the latter. In Python, you can define getters, setters, and delete methods with the property function. If you just want the read property, there is also a @property decorator you can add above your method. |
|||
|
|