Что выведет код?
class A:
def __init__(self, x):
self._x = x
@property
def x(self):
return self._x
a = A(1)
print(A.x.fget(a), a.x)