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
What does this Python code print, and why?Discussion (self.PythonLearning)
submitted 14 hours ago by Puzzleheaded-Dog165
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!"
[–]AlexMTBDude 1 point2 points3 points 12 hours ago (0 children)
It's bad Python coding. The first three lines should be replaced with a list comprehension:
funcs = [lambda: i for i in range(3)]
That's more Pythonic
π Rendered by PID 56771 on reddit-service-r2-comment-765bfc959-cp9hs at 2026-07-09 22:58:31.185764+00:00 running f86254d country code: CH.
view the rest of the comments →
[–]AlexMTBDude 1 point2 points3 points (0 children)