Post #9308
274
- 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
- Sep 21, 2026print(1 in [1, 2] == True) 💕 Наш уютный чатик #Python
- Sep 20, 2026Post #9312
- Sep 20, 2026def modify(n): n = n + 5 n *= 2 return n x = 10 result = modify(x) + x print(result) 💕 На…