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