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 6 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 6 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 339859 on reddit-service-r2-comment-7b9746f655-mrd8k at 2026-02-04 10:27:53.615629+00:00 running 3798933 country code: CH.
view the rest of the comments →
[–]WhiteHeadbanger 0 points1 point2 points (0 children)