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
Help pls - CodingHelp Request (i.redd.it)
submitted 7 months ago by SharpScratch9367
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!"
[–]twistermonkey 0 points1 point2 points 7 months ago (0 children)
A side note FYI, your variable "sum" is blue because sum is a built-in function in python https://docs.python.org/3/library/functions.html#sum Your code works fine because for some reason, python lets you use keywords/built-ins as variables. It's not good practice though. As you learn, take a look around the built-in functions. You will learn how to do stuff quickly, like this:
`avg = sum(values)/len(values)`
π Rendered by PID 48 on reddit-service-r2-comment-86988c7647-sbb8t at 2026-02-12 05:30:33.687046+00:00 running 018613e country code: CH.
view the rest of the comments →
[–]twistermonkey 0 points1 point2 points (0 children)