Argument

Applies to: general

An argument is the value passed into a function call. A parameter is the name in the function definition.

def scale(x): return 2*x
scale(5)  # 5 is the argument

See also: parameter, function