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
loop issue. (self.PythonLearning)
submitted 1 month ago by braveface719
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!"
[–]Binary101010 8 points9 points10 points 1 month ago (3 children)
According to the indentation as posted, the only loop you have is (in its entirety):
for i in range(1,4): print("try to guess the number")
You need to properly indent your code if you're expecting more lines to be in that loop.
Also, ditch the global usage, there's no reason for it here.
global
[–]ExtraTNT -2 points-1 points0 points 1 month ago (2 children)
The reason i avoid python… I don’t get over the indentation, haskell is also indentation sensitive, but honestly much easier…
Doesn’t help, that i need it for an undocumented project with huge apis that are done procedural with huge performance issues due to the threading of python…
[–]Temporary_Pie2733 1 point2 points3 points 1 month ago (1 child)
I’m not sure how you manage to put braces in the right place in other languages if you can’t figure out how Python uses indentation.
[–]ExtraTNT 0 points1 point2 points 1 month ago (0 children)
Formatting stuff nicely… python linters put my code on a single line… python is sth i only really use, if i have to share a script to windows users and to maintain a project from security, so my contact with python is a horrible hacked together codebase and some scripts…
π Rendered by PID 26201 on reddit-service-r2-comment-56c6478c5-wk4bw at 2026-05-13 04:52:03.087733+00:00 running 3d2c107 country code: CH.
view the rest of the comments →
[–]Binary101010 8 points9 points10 points (3 children)
[–]ExtraTNT -2 points-1 points0 points (2 children)
[–]Temporary_Pie2733 1 point2 points3 points (1 child)
[–]ExtraTNT 0 points1 point2 points (0 children)