What is the output of the following Python Code,use polymorphism concept.
def add(a, b, c = 0):
    return a+b+c
print(add(1, 3))
print(add(1, 3, 4))

Posted on by