Argument in python

hey could anyone explained me what is argument really meaning in python until now i still dun understand about it

An argument is a value that is passed to a function or to another program.

Let’s say you define a function that requires two parameters to run, X and Y.
The values that you assign to X and Y when you call that function are the arguments. They are the values being passed to the function.

2 Likes

Argument = value

Argument is just a fancy word used in function , class …

Similarly

We used method(instead of function) when function is defined inside a class

Argument is the real representation of a parameter during function call

Arguments are basically variables in functions

An arguments is the actual representation of a parameter in a function during function call