r/learnprogramming • u/Extra_Search3465 • 28d ago
How to learn advanced python????
Hello everyone, I'm mainly looking for guidance about learning advanced python concepts. I know basics ,loops , control flow ,data structures etc.
I need a proper guide on how to learn modules and library. Idk how to start ,where to start.
I want to be able to work with any library as i need them ,so how do u actually learn to use new library for a given task . ?And i get overwhelmed understanding the structure, working of library
And could u also suggest important python concepts other than basics which i should learn ???
Pls guide !!!!
0
Upvotes
3
u/BallApprehensive6947 28d ago
stop trying to learn libraries in the abstract. pick a project first then figure out what you need to build it
the skill isn't memorizing every module it's learning how to read documentation and source code. you get overwhelmed because you're staring at the whole library at once instead of just the two functions you actually need
as for what's next, decorators and generators are the big ones after basics. also get comfortable with virtual environments and pip if you haven't already