#!/usr/local/bin/python3 class C(object): def __init__(self): self._a = 0 @property def a(self): return self._a print(C.a.getter)