Page 1 of 1

What type of inheritance is illustrated in the following Python code?

Posted: Wed Jul 13, 2022 7:45 pm
by answerhappygod
class A():
pass
class B():
pass
class C(A,B):
pass
a) Multi-level inheritance
b) Multiple inheritance
c) Hierarchical inheritance
d) Single-level inheritance