TIL: Python's @property has a short-hand for setters! class C(object): def __init__(self): self._x = None @property def[…]