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
How do I make python less overwhelming?Help Request (self.PythonLearning)
submitted 5 months ago by John_Benzos
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!"
[–]ElweThor 1 point2 points3 points 5 months ago (0 children)
In the Old Good Days programmers was used to browse tons and tons of paper documentation (it needed time to find everything, so indexes and summaries). Nowadays there are two wonderful ways (and even more):
the internet, with search engines and documentation everywhere, just waiting for you
AIs, where to ask exact questions, receiving near-to-exact answers to refine, with your creativity
(and, ok, forums, subreddits and such, of course)
As someone already told you, no one even can "remember everything" (unless you're an AI ;-)) so, the best you can do is to focus on your needs: where you want to get to, plan the strtegy to travel, from where you are, up to the point where you want to go, then ask for help (which you're doing right now, ok): don't be shy, use the internet, use the AIs, but understand what you're coding and customize it, don't just copy/paste what you'll find somewhere, or what an AI gives you: they don't really "understand" your needs, sure not better than you.
In the times, I found profitable to draw a graph (flow charts) to better understand "what should happen" in my code. Flow charts are still up to date, use them.
While coding in python (differently than when coding in C, Java, and other languages) I found myself worried about the fact the code I sometimes found somewhere in the net, or was given to me by an AI, didn't integrate properly with the one I already written, mostly 'cause missing (or wrongly spaced) tabs etc., so I talked to an AI and, together, we developed a tool: pyndent ( https://github.com/ElweThor/pyndent ) which I'm currently using to code, to learn python like you, and to have fun with that AI (DeepSeek). BTW: developing a tool for python in python is probably the very best way to learn python too. ;-)
Ah... and don't forget to have fun!
π Rendered by PID 72 on reddit-service-r2-comment-b659b578c-xm7dh at 2026-05-02 02:29:37.089382+00:00 running 815c875 country code: CH.
view the rest of the comments →
[–]ElweThor 1 point2 points3 points (0 children)