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
0
Thank you.