In this we are going to see a basic program about Polymorphism in Python Programming Language.
str1 = "HelpForCoders"
print(len(str1))
tup = (1, 2, 3)
print(len(tup))
list1 = [1, 2, 3, 4, 5]
print(len(list1))
# Coded By Dhiraj Shelke
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP