Example of Python function with parameters
def add_two_nums(num_1, num_2): print(num_1+num_2)
Invocation:
add_two_nums(4, 8)