Addition using function in python?

 #function definition

def addition():

    x=10

    y=20

    z=x+y

    print("Sum=",z)


#function calling

addition()   

Comments

Popular posts from this blog

What is computer programming?

Computer programming languages?