+ 2
Explain me all possible about python modules
I can't get it help me 😓
5 Respostas
+ 3
see for yourself here https://cheeze.club/8lnz
+ 2
I didn't get it
+ 2
How to use them?
What they do?
this one
0
Jay, what is it that you don't you understand?
How to use them?
What they do?
How to get more?
How to make your own?
Something else...
0
In the most simplistic explanation, modules are files of code that other programmers have made for you to use for convenience/efficiency. An example is the numpy module.
Python does not create multi-dimensional arrays, you must create those yourself. It's quite easy, but inconvenient, especially if we gotta do it a lot. This module handles all of that for you, and tons more. This saves everyone hours of typing.
Having a module is simply using code that someone else (or even you) wrote to make your life easier when writing future code. Why write/rewrite something over and over when another python file automatically handles all of those operations for you? Exactly, you wouldn't.
Of course there is more to it than that, but that's the basic explanation.