Positional vs. Keyword Arguments
In Python, arguments passed to a function can be positional or keyword-based. Positional arguments are assigned to the function's parameters in the order they appear, while keyword arguments are explicitly named and assigned.
Understanding Positional and Keyword Arguments
The text quoted in your question correctly defines positional arguments as those without an equal sign (e.g., width in rectangleArea). Keyword arguments, on the other hand, are followed by an equal sign and an expression that specifies their default value (e.g., height=2).
Example
Consider the following function:
def rectangleArea(width, height):
return width * height
In this function, width and height are positional arguments. However, the provided example:
rectangleArea(width=1, height=2)
uses keyword arguments to set the values for width and height.
Confusion Between Argument Types
The text from your question seems to confuse positional and keyword arguments with function parameter defaults. Default values are specified in function definitions, while positional and keyword arguments are used in function calls.
Clarification
In the example above, the function rectangleArea requires two positional arguments, width and height. However, the call to the function passes these arguments using keyword syntax. This is perfectly valid in Python, as the function definition allows for both positional and keyword arguments.
Summary
Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.
Copyright© 2022 湘ICP备2022001581号-3