Answers for "polymorphism in python"

1

polymorphism in python

# Python program to demonstrate in-built poly-
# morphic functions

# len() being used for a string
print(len("geeks"))

# len() being used for a list
print(len([10, 20, 30]))
Posted by: Guest on August-29-2021

Code answers related to "polymorphism in python"

Python Answers by Framework

Browse Popular Code Answers by Language