Addition of number using function in Python

#function
def sum():
  a,b=20,30
  print("sum is:",a+b)

sum()  

Comments

Popular Posts