Polymorphism

 #What is Polymorphism : 

#The word polymorphism means having many forms. In programming, polymorphism means same function name (but different signatures) being uses for different types.


print(5+6)

print("5"+"6")

Comments

Popular posts from this blog

strings 2

property decorator

Raise keyword in python