Module

Module

When you write a script, the moment may come when you think there must be functions that can do what you want to do. Python calls “modules”, and “packages” which is the collection of modules to assist users to do their job easily and quickly. (They are used interchangeably from time to time.) Unlike compiled languages like Fortran, these modules are not collections of object files but rather regular Python source code files. »