Properties, classmethods and staticmethods¶
There are three decorators that are frequently used with Python classes:
@property
@classmethod
@staticmethod
Exercise¶
Run the code in property_buggy.py.
Find and fix 3 bugs.
See also
There are three decorators that are frequently used with Python classes:
@property
@classmethod
@staticmethod
Run the code in property_buggy.py.
Find and fix 3 bugs.
See also