From aac4ce175c00bf3d6dad1c928578e5486566a1ee Mon Sep 17 00:00:00 2001 From: Sean McCarthy Date: Sun, 17 Jul 2022 02:15:44 -0600 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=20Update=20`first-steps.md`,=20clarif?= =?UTF-8?q?y=20distinction=20between=20parameter=20and=20argument=20(#176)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Sebastián Ramírez Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> --- docs/tutorial/first-steps.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/first-steps.md b/docs/tutorial/first-steps.md index b8f57f582..9ccccaabc 100644 --- a/docs/tutorial/first-steps.md +++ b/docs/tutorial/first-steps.md @@ -432,14 +432,14 @@ are called "Python function parameters" or "Python function arguments". It's quite technical... and somewhat pedantic. - One refers to the variable name in a function *declaration*. Like: + *Parameter* refers to the variable name in a function *declaration*. Like: ``` def bring_person(name: str, lastname: str = ""): pass ``` - The other refers to the value passed when *calling* a function. Like: + *Argument* refers to the value passed when *calling* a function. Like: ``` person = bring_person("Camila", lastname="Gutiérrez")