✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що буде результатом виконання?class A: def __init__(self, x=[]): self.x = x self.x.append(1)a1 = A()a2 = A()print(a2.x)