Explain me all possible about python modules | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
+ 2

Explain me all possible about python modules

I can't get it help me 😓

8th Jul 2017, 11:47 AM
Jay Chheda
Jay Chheda - avatar
5 Antworten
+ 3
see for yourself here https://cheeze.club/8lnz
8th Jul 2017, 11:48 AM
David Sebastian Keshvi Illiakis
David Sebastian Keshvi Illiakis - avatar
+ 2
I didn't get it
8th Jul 2017, 1:54 PM
Jay Chheda
Jay Chheda - avatar
+ 2
How to use them? What they do? this one
8th Jul 2017, 4:52 PM
Jay Chheda
Jay Chheda - avatar
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...
8th Jul 2017, 2:41 PM
Jim Tully
Jim Tully - avatar
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.
8th Jul 2017, 3:13 PM
Sapphire