the difference between parameter and argument code example
Example 1: parameter vs argument
def add(*numbers): # numbers = Parameter
retutn sum(numbers)
print(add(1, 2, 3)) # 1, 2, 3 = Arguements
Example 2: parameter vs argument
Function parameters are the names listed in the function's definition.
Function arguments are the real values passed during function's calling.