+ 3

What library should I learn in Python if I want to become a software developer? Thanks

Software development using Python

7th Jul 2019, 8:53 AM
Ololade
3 Respuestas
+ 5
There are many and it depends on what you are trying to accommplish. e.g. Operating system related learn: -os -subprocess -io -sys -pathlib for math related you can lmport: -math -cmath -random -statistics -numbers -fractions for network programming: -socket -webbrowser -http -ftp -pop for information on each keyword use e.g.: dir(os) //or os.__doc___ help(os) I started learning python a few weeks ago, and thought it would be a good idea to develop a good foundation by learning how to control the machine with os and sys modules. they both have a significant number of methods to learn compared to other modules which i believe is a reflection of their importance. here is a little hint to help you learn quicker, create a table with all the key words. this will help you to categorise and relate the key words much better which will in turn improve your understanding and memory Let me know your thoughts
7th Jul 2019, 10:32 PM
Logomonic Learning
Logomonic Learning - avatar
0
Thank you.
7th Jul 2019, 8:05 PM
Ololade