def add(x,y):
print(x+y)
This function adds 2 digit
x,y are the parameters
'add' is the name of the function
def is the keyword to define a function
def add(x,y):
print(x+y)
This function adds 2 digit
x,y are the parameters
'add' is the name of the function
def is the keyword to define a function