I am using python but I want to know what are the modules in python and how to download those things? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

I am using python but I want to know what are the modules in python and how to download those things?

26th Mar 2018, 9:31 AM
Alan
Alan - avatar
2 Answers
+ 4
you find modules here https://pypi.python.org/pypi here you find how to download modules. In most cases it is pip install <module> As far as I remember, curses is a bit tricky.
26th Mar 2018, 10:23 AM
Oma Falk
Oma Falk - avatar
+ 4
Modules in Python use to do some special work in our programming. A Python module is simply a  Pythonsource file, which can expose classes, functions and global variables. When imported from another Python source file, the file name is treated as a namespace. A Python package is simply a directory of Python module(s).
26th Mar 2018, 11:44 AM
Maninder $ingh
Maninder $ingh - avatar