✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Для заданого фрагменту коду встановить відповідності
class MyClass:
def __init__(self):
self.x = 10
def print_x(self):
print(self.x)
c = MyClass()