func add Question Write a function that returns the sum of two numbers. solved 1 Python YashikaKhurana 55 years 1 Answer 1165 views Master 0
Answer ( 1 )
def add(a,b):
return a+b
def add(a,b):
return a+b
print(add(2,3))
def add(a,b):
return 2+3
print(add(2,3))
def add(x,y):
return x+y