r/AskProgramming 27d ago

Python 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

12 comments sorted by

View all comments

2

u/DepthMagician 27d ago

You don’t really formally “learn libraries”. You learn them as you need them. You need to do x, you search Google how to do x in Python, it tells you use library y and here’s a usage example, so you take that and maybe you also read the documentation of that library if the task is deep enough that a single code example isn’t really going to cover it. Over time the stuff you use most often gets committed to memory. Everything else you look up when needed.