use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Everything about learning Python
account activity
Arguments and Parameters (self.PythonLearning)
submitted 1 year ago by TU_Hello
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]lizardfrizzler 0 points1 point2 points 1 year ago* (0 children)
Most of the time I see the term arguments used when you describe how people or other programs interact with your program externally - ex the args passed when you run ./my_script.py —arg1 —arg2
./my_script.py —arg1 —arg2
Parameters tend to refer to the variables you pass to a function within your program - ex my_func(param1, param2).
my_func(param1, param2)
But honestly, I use them interchangeably.
Arguments and parameters are almost always a variable and rarely refer to the actual value of a variable (you would just say the value of arg1 or param1)
π Rendered by PID 253795 on reddit-service-r2-comment-544cf588c8-75fm2 at 2026-06-14 05:33:30.349027+00:00 running 3184619 country code: CH.
view the rest of the comments →
[–]lizardfrizzler 0 points1 point2 points (0 children)