|
2 |
edited tags
|
||
|
1 |
|
||
python properties and inheritanceI have a base class with a property which (the get method) I want to overwrite in the subclass. My first thought was something like:
This does not work (subclass bar.age returns 11). I found a solution with an lambda expression which works:
So is this the right solution for using properties and overwrite them in a subclass, or are there other preferred ways to do this?
|
||||
