I'm curious about one of the recommendations in the Google Python style guide concerning properties.
In it, they give the following example:
class Square(object):
"""A square with two properties: a writable area and a read-only perimeter.
To use:
>>> sq = Square(3)
>>> sq.area
9
>>> sq.perimeter
12
>>> sq.area = 16
>>> sq.side
4
>>> sq.perimeter
16
"""
def __init__(self, side):
self.side = side
def __get_area(self):
"""Calculates the 'area' property."""
return self.side ** 2
def ___get_area(self):
"""Indirect accessor for 'area' property."""
return self.__get_area()
def __set_area(self, area):
"""Sets the 'area' property."""
self.side = math.sqrt(area)
def ___set_area(self, area):
"""Indirect setter for 'area' property."""
self.__set_area(area)
area = property(___get_area, ___set_area,
doc="""Gets or sets the area of the square.""")
@property
def perimeter(self):
return self.side * 4
I have two questions about this:
What is the benefit of using the three underscore "indirection"
___get_area
and___set_area
as well as two underscore ones, over just using the two underscore ones directly?Why use
property()
as a method with this set of double and triple underscore methods, rather than doing something like:@property def area(self): return self.side ** 2 @area.setter def area(self, value): self.side = math.sqrt(value)