polymorphism in python

 # polymorphism : ability to convert in various form


print(5+6)
print("5"+"6")

# we have to init variable 
# in both statement we add two numbers but in different ways..
# and the answer both time different
# this is called polymorphism....

Comments