class Point: __slots__ = ['x', 'y']p = Point()p.x = 1p.z = 2print(p.x) Наш уютный чатик#Pythont.me/pythontest_it/9228TranslateSeptember 5, 2026 171