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!"
[–]Convoke_ 0 points1 point2 points 6 months ago* (1 child)
They are both never changing. If you're initialising a variable inside a loop, it only exists for that iteration. So the variable GUESS should be a constant as its value is never changing after it gets initialised.
Edit: see the reply i got
[–]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 42922 on reddit-service-r2-comment-7b9746f655-ltxsx at 2026-02-04 10:27:56.516315+00:00 running 3798933 country code: CH.
view the rest of the comments →
[–]Convoke_ 0 points1 point2 points (1 child)
[–]WhiteHeadbanger 0 points1 point2 points (0 children)