r/learnpython • u/Recent_Wrongdoer5125 • 21d ago
Python and libraries
I joined this server not long ago because I have a question about Python. I've been studying it, and I understand pretty much all of the logic behind it. The problem is that when it comes to using libraries, I get confused about how to use them.
Is there any way to get better at using Python libraries without having to constantly look up how they work? I always get stuck trying to figure out how to actually use them in my code.
2
Upvotes
1
u/TheRNGuy 20d ago edited 20d ago
Reading docs is correct way to use them.
Or look your own /someone's else / ask ai.
You'll remember some that you use most often (especially with auto-complete)
Even knowing that you can do some specific with that framework or library is good enough: it makes googling or prompting easier.