📖 INDEX
LOADING ENGINE...
Property Decorator (@property)
PYTHON REFERENCE // property-decorator-property
Used to define properties in a class without calling getter/setter explicitly
Syntax
@property
def temperature(self):
return self._temperatureExamples
Example 01Basic Usage
@property
def temperature(self):
return self._temperatureBest Practices
- Consult official Python documentation for advanced usage.
- Ensure proper indentation and Pythonic style (PEP 8).