python program in which an function (with single string parameter ) is defined and calling that function prints the string parameters given to function. code example
Example: how to define functions in python
def add(number):
equation = 5 + number
print(equation)
add(10)
output:
15