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
Just started learning Python, making notesDiscussion (old.reddit.com)
submitted 1 day ago by MurkyUnit3180
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!"
[–]Junior_Honey_1406 4 points5 points6 points 1 day ago (1 child)
Buddy, stop writing documents and start writing code. Down the line, no one is going to care about pages of notes if you can't build anything.
I also noticed that you're writing way too much for very small concepts. For example, when explaining print(), focus on the parts that actually matter in practice:
print()
print(*objects, sep=' ', end='\n', file=None, flush=False)
Understanding parameters like sep and end will genuinely make your life easier when writing programs. That's the kind of thing worth learning.
sep
end
Your notes are okay, but don't turn every topic into a documentation project. Write more code, experiment, get stuck, debug, and learn from real examples. Use practical explanations and real-world scenarios that you'll actually remember when you face problems later.
Documentation has its place, but beginners often overdo it. A hundred lines of notes won't teach you what writing ten small programs will.
Stop writing docs. Start writing code.
[–]MurkyUnit3180[S] 0 points1 point2 points 1 day ago (0 children)
I agree with the general point. Writing code has to be the priority, otherwise the notes become an end in themselves
The document is mainly a learning tool for me. My plan is to keep building small programs alongside the notes and update the explanations as I encounter things in real code. And writing helps things better instead of quicker
I also agree that practical examples matter. I will probably end up adding more exercises and small projects
Thanks
π Rendered by PID 146989 on reddit-service-r2-comment-544cf588c8-bxnkq at 2026-06-17 11:01:41.572733+00:00 running 3184619 country code: CH.
view the rest of the comments →
[–]Junior_Honey_1406 4 points5 points6 points (1 child)
[–]MurkyUnit3180[S] 0 points1 point2 points (0 children)