Python Programming - Inheritance - Discussion

Discussion Forum : Inheritance - General Questions (Q.No. 3)
3.
How is multiple inheritance implemented?
By using the extends keyword
By using the inherit keyword
By using the super() function
By specifying multiple parent classes in the class definition
Answer: Option
Explanation:
Multiple inheritance in Python is implemented by specifying multiple parent classes in the class definition, separated by commas.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.