def function parameter python code example
Example 1: python default arguments
def my_function(name, age = 20):
print(name + " is " + str(age) + " years old"
my_function("Mitro") # Mitro is 20 years old
my_function("Mitro", 26) #Mitro is 26 years old
Example 2: how to define functions in python
def add(number):
equation = 5 + number
print(equation)
add(10)
output:
15