Robotics & Artificial Intelligence
Within a function, the parameters act as placeholders for the passed argument.
Python Functions
2 Likes
Answer
True
Reason — Within the function, the parameters act as placeholders for the arguments. The actual values are passed during the function call, and the parameters receive and represent those values inside the function body.
Answered By
3 Likes
Related Questions
In Python, it is necessary to provide at least one argument in a function.
All other arguments to the right side of default argument must also have default values.
The return statement in Python function cannot return multiple values.
Python allows you to combine different types of arguments in a function call.