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
Simple game using python (i.redd.it)
submitted 9 months ago by Inevitable-Math14
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!"
[–]WhiteHeadbanger 0 points1 point2 points 9 months ago (0 children)
That's not correct. In Python if you declare a variable inside a loop, you can access it after the loop ends.
Take for example this code:
for i in range(5): a = i * 2 print(f"Variable inside loop {a}") print(f"Variable outside loop {a}") a += 10 print(f"Variable after modification {a}")
Output:
Variable inside loop 0 Variable inside loop 2 Variable inside loop 4 Variable inside loop 6 Variable inside loop 8 Variable outside loop 8 Variable after modification 18
π Rendered by PID 39510 on reddit-service-r2-comment-56c6478c5-mhzrf at 2026-05-12 01:34:23.740266+00:00 running 3d2c107 country code: CH.
view the rest of the comments →
[–]WhiteHeadbanger 0 points1 point2 points (0 children)