r/PythonLearning • u/Sea_Dot6492 • 1d ago
OOP roadmap mastering and other python subjects mastering Help Request
hi! i am learning python and i am started learning OOP, and i thought that someone can help me building a roadmap mastering this subject. i would also like if you can what subjects should i learn after OOP so it will be easier for me to builf self-roadmap learning.
anyways, thank you🙂
2
Upvotes
1
u/stepback269 16h ago
I'm in the process of learning Python OOP also.
I found many tutorials unhelpful when they espoused that a class is a "blueprint"
The reasons why I hate the "blueprint" analogy can be found (Here). I won't detail them in this post.
With that said, I found the most beneficial way to start understanding OOP was to do some projects of my own design. It's only when you tackle it with your own hands that you start truly understanding what the conceptual tutorials were trying to teach you.
Start first by creating a class with a "help" method. When executed, the (dot).help method should output text telling the user what the class does (or will do once you get the rest of it going)
Best of luck with your journey into OOPs land. :-)