0
What are modules in programming
Import module
7 Respostas
+ 1
https://docs.python.org/3/tutorial/modules.html
+ 1
a module is a python file with definitions, also called functions. anyone can create a module. all you need to do is define a function within a python file. you can then import that module/file.
+ 1
all modules that are built in are listed in the python documentation...
https://docs.python.org/3/py-modindex.html
there are also a lot of third party modules, awailable through pip install, see:
https://pypi.org
you can also make your own, as said in the first documentation link (given in my first post) and stated by Andrew Choi...
+ 1
not all modules are built in. you will have to install them using “pip install”
0
Is it all module that are built in
0
Thanks bro
0
There is 3 type of module
1 = is written in other people mins download in external
2=is write in your self
3=is come with python software