Python Programming - Polymorphism - Discussion

Discussion Forum : Polymorphism - General Questions (Q.No. 14)
14.
How does Python achieve polymorphism through method overloading?
By allowing a function to take different types of arguments
By automatically resolving conflicts using the first defined method
By using the C3 linearization algorithm to determine method resolution order
Python does not support method overloading
Answer: Option
Explanation:
Python does not support method overloading in the traditional sense, where multiple methods with the same name have different parameters.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.