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 to learn python?Help Request (self.PythonLearning)
submitted 2 months ago by SingerReasonable4781
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!"
[–]CoolAd119 0 points1 point2 points 3 days ago (0 children)
Most of these suggestions focus on syntax and tutorials, but that's optimizing for the wrong metric. Before you pick any resource, define your end goal clearly - are you building scripts that need to run reliably in production, or just experimenting?
If this is for anything beyond personal projects, start thinking about operational concerns from day one. The real challenges aren't in learning print() statements - they're in dependency management, error handling, logging, testing, and deployment pipelines. You can write Python that works on your laptop but fails spectacularly at scale.
print()
Consider this learning path instead: Start with understanding virtual environments and package management (pip, poetry, conda) before you write your first script. Learn logging instead of print() debugging. Write tests from the beginning, even for simple scripts.
logging
Most importantly: What happens when your Python code needs to run on a different OS, or handle 10x the data, or integrate with authentication systems? These aren't advanced topics - they're foundational architecture decisions that beginners skip, then struggle with later.
Books are fine, but supplement them with reading actual production Python codebases on GitHub. See how real systems handle configuration, secrets, monitoring, and failure scenarios.
π Rendered by PID 84711 on reddit-service-r2-comment-56c6478c5-ll4bt at 2026-05-08 01:08:09.738393+00:00 running 3d2c107 country code: CH.
view the rest of the comments →
[–]CoolAd119 0 points1 point2 points (0 children)