+ 5
What is a python module?
Modules with function and classes.
2 Réponses
+ 2
Every file *.py is a Module of python. A Module can contain functions, classes or whatever u want. Just need to type 'import module' on python. U can also use 'from module import class as cls'
+ 2
Thanks for the answer to all of you