Post #9318
222
- Sep 22, 2026Post #9320
- Sep 22, 2026class A: x = 1 class B(A): pass class C(A): pass B.x = 2 A.x = 3 print(C.x) 💕 Наш уютный…
- Sep 22, 2026tpl = ([],) tpl[0].extend([1, 2]) print(tpl) 💕 Наш уютный чатик #Python
- Sep 21, 2026Post #9316
- Sep 21, 2026class A: def __init__(self): self.__x = 1 def get_x(self): return self.__x class B(A): def…
- Sep 21, 2026Post #9314