✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що виведе наступний фрагмент коду
class MyClass:
x = 10
def __init__(self):
self.y = 20
c1 = MyClass()
c2 = MyClass()
c1.x = 30print(c2.x)