diff --git a/python-temel/init.example.without.super.py b/python-temel/init.example.without.super.py new file mode 100644 index 0000000..97eb164 --- /dev/null +++ b/python-temel/init.example.without.super.py @@ -0,0 +1,15 @@ +class A: + def __init__(self): + print('A.__init__') + +class B: + def __init__(self): + print('B.__init__') + +class C(A, B): + def __init__(self): + A.__init__(self) + B.__init__(self) + print('C.__init__') + +c = C()