Python return statement (Write and Call Function)

24

def addition(a,b):
    return (a+b)
    
x = addition(3,7)
print(x)

Comments

Submit
0 Comments