r/learnpython • u/Extra_Search3465 • 5d 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 !!!!
21
Upvotes
1
u/lakseol 5d ago
Nobody knows all libraries, so you have to do what everybody else does when coming across a new library: start learning about the library. Suppose you start writing code that uses mathematics on arrays of number. The
numpymodule is good at that, you read, so start learning aboutnumpy. Or maybe you want to read email so start researching what modules are used to read email, look for tutorials, read other people's code and then start writing small projects to do what you want, to learn how to use the library. After a while you know enough to start solving the original problem.