✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Який результат поверне наступний код?class A: def __init__(self): self.data = []a = A()b = A()a.data.append(1)print(b.data)