Algorithms, functions, classes, regular expressions, iterators, generators, OOP, exceptions, NumPy, pandas, scikit-learn
https://telega.in/c/python_tasks
Questions — @dina_ladnyuk
Post #2861
716
Что выведет код?
class X:
def __init__(self):
print('X', end='')
class Y:
def __init__(self):
print('Y', end='')
class Z(X, Y):
def __init__(self):
print('Z', end='')
super().__init__()
z = Z()