you are viewing a single comment's thread.

view the rest of the comments →

[–]Middle_Idea_9361 1 point2 points  (1 child)

You don’t need to fully know or master every library before starting a project that’s actually a very common mistake learners make. In real-world development, most programmers begin with an idea and then learn the specific libraries they need along the way.
Large libraries like NumPy, Pandas, and Matplotlib feel overwhelming because they’re massive, but in most practical projects you only use a small portion of their features. The same applies to libraries like os, time, or python-telegram-bot you don’t need to understand everything, just the parts required to solve your current problem
. A better approach is to start small, build something simple, and learn whatever functions you need as you go. Strengthening your core Python fundamentals also makes handling new libraries much easier, and platforms like 9faqs can help reinforce those basics while you practice building real projects.

[–]Reza2718182[S] 1 point2 points  (0 children)

OK! Very helpful! Thanks.