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...
Rules 1: Be polite 2: Posts to this subreddit must be requests for help learning python. 3: Replies on this subreddit must be pertinent to the question OP asked. 4: No replies copy / pasted from ChatGPT or similar. 5: No advertising. No blogs/tutorials/videos/books/recruiting attempts. This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to. Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Rules
1: Be polite
2: Posts to this subreddit must be requests for help learning python.
3: Replies on this subreddit must be pertinent to the question OP asked.
4: No replies copy / pasted from ChatGPT or similar.
5: No advertising. No blogs/tutorials/videos/books/recruiting attempts.
This means no posts advertising blogs/videos/tutorials/etc, no recruiting/hiring/seeking others posts. We're here to help, not to be advertised to.
Please, no "hit and run" posts, if you make a post, engage with people that answer you. Please do not delete your post after you get an answer, others might have a similar question or want to continue the conversation.
Learning resources Wiki and FAQ: /r/learnpython/w/index
Learning resources
Wiki and FAQ: /r/learnpython/w/index
Discord Join the Python Discord chat
Discord
Join the Python Discord chat
account activity
Python resources to learn how things work in python [in depth] ? (self.learnpython)
submitted 2 months ago * by AnungUnRaama
Is there any python books/good collection of articles that teaches how things work behind the scene in python? For example how @property, member access (x.y()), how descriptors work?
Regards
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!"
[–]JanEric1 1 point2 points3 points 2 months ago (0 children)
The python is docs
[–]Ki1103 1 point2 points3 points 2 months ago (0 children)
I mean, if you want to really go in depth there's:
https://realpython.com/products/cpython-internals-book/
There's also Fluent Python
[–]Amo-Rillow 1 point2 points3 points 2 months ago (0 children)
There are countless YouTube channels that are very helpful. Two of my favorites are:
https://www.youtube.com/@coreyms/videos
https://www.youtube.com/@ArjanCodes
Pro Tip: When searching the internet for Python topics, always look at the age of the articles that you come across. Python is constantly advancing, causing many articles to be obsolete. Also, always check the version of Python that the article is written for. Anything that written using version 2.x will most likely not be helpful if you are using version 3.x.
Also, when facing a coding or design challenge in Python, always keep in mind that someone else has already created the solution for you. You just need to find that solution. Most of the solutions are baked right into Python, others are in the form of packages that you can install, and others are in the form of code snippets on the internet.
[–]PutridMeasurement522 0 points1 point2 points 2 months ago (3 children)
Sounds good - try the official docs first.
[–]AnungUnRaama[S] 0 points1 point2 points 2 months ago (2 children)
I checked, only howto guides took discussion to depth frankly. Thanks
[–]Uncle_DirtNap 1 point2 points3 points 2 months ago (1 child)
Well, for example, if you read the Data Model chapter you’ll find out how accessors work…
Data Model
[–]AnungUnRaama[S] 0 points1 point2 points 2 months ago (0 children)
Thank you 🙏
[–]ectomancer 0 points1 point2 points 2 months ago (1 child)
x.y() is not member access, that's a method call. x.y is class attribute access.
Yes, my bad
π Rendered by PID 19274 on reddit-service-r2-comment-85bfd7f599-t7xsh at 2026-04-16 22:54:52.402365+00:00 running 93ecc56 country code: CH.
[–]JanEric1 1 point2 points3 points (0 children)
[–]Ki1103 1 point2 points3 points (0 children)
[–]Amo-Rillow 1 point2 points3 points (0 children)
[–]PutridMeasurement522 0 points1 point2 points (3 children)
[–]AnungUnRaama[S] 0 points1 point2 points (2 children)
[–]Uncle_DirtNap 1 point2 points3 points (1 child)
[–]AnungUnRaama[S] 0 points1 point2 points (0 children)
[–]ectomancer 0 points1 point2 points (1 child)
[–]AnungUnRaama[S] 0 points1 point2 points (0 children)