Parameter

A parameter is a reference or value passed to a function, procedure, subroutine, command, or program.

Python Example

# Define a function that uses parameters.
def print_variables(parameter1, parameter2):
    print(str(parameter1), str(parameter2))

# Use the function.
print_variables(2, "my string")