Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Doc/faq/programming.rst
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ What is the difference between arguments and parameters?

:term:`Parameters <parameter>` are defined by the names that appear in a
function definition, whereas :term:`arguments <argument>` are the values
actually passed to a function when calling it. Parameters define what types of
actually passed to a function when calling it. Parameters define what kind of

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe we could make kind of arguments a link to https://docs.python.org/3/glossary.html#term-parameter as novice users may not know what it is exactly.

arguments a function can accept. For example, given the function definition::

def func(foo, bar=None, **kwargs):
Expand Down