Python modules | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Python modules

What modules should beginners learn?

19th Sep 2019, 9:08 PM
Pydi
Pydi - avatar
3 Answers
+ 3
Numpy for array manipulations Pandas for CSV file manipulations Tkinter for GUI I've used these untill now. Python is having lots and lots of modules. Better to learn what is relavant to your project.
20th Sep 2019, 4:49 PM
Manoj
Manoj - avatar
+ 1
These are relatively simple: math, time, random This can be useful: numpy numpy offer an iterable that is very similar to lists: https://www.sololearn.com/learn/6671/?ref=app
19th Sep 2019, 9:31 PM
Seb TheS
Seb TheS - avatar
+ 1
If you are working with files: shutil os If you are doing scientific computing: scipy numpy (matplotlib) If you are working with text/pattern matching: re If you are working with machine learning: numpy (scipy) scikit-learn (tensorflow for advanced) matplotlib (seaborn) pandas If you want to make a GUI: tkinter (pyqt is better-looking but I think tkinter is better for beginners) If you want to make a website: django or flask
19th Sep 2019, 10:46 PM
Rora