Python Modules
Every Python file is a module.
You can import a module from other files, and that’s the base of any program of moderate complexity, as it promotes a sensible organization and code reuse.
In the typical Python program, one file acts as the entry point. The other files are modules and expose functions that we can call from other files.
The file dog.py contains this code:
def bark():
    print('WOF!')
We can import this function from another file using import, and once we do, we can reference the function using the dot notation, dog.bark():
import dog
dog.bark()
Or, we can use the from .. import syntax and call the function directly:
from dog import bark
bark()
The first strategy allows us to load everything defined in a file.
The second strategy lets us pick the things we need.
Those modules are specific to your program, and importing depends on the location of the file in the filesystem.
Suppose you put dog.py in a lib subfolder.
In that folder, you need to create an empty file named __init__.py. This tells Python the folder contains modules.
Now you can choose, you can import dog from lib:
from lib import dog
dog.bark()
or you can reference the dog module specific function importing from lib.dog:
from lib.dog import bark
bark() download all my books for free
- javascript handbook
 - typescript handbook
 - css handbook
 - node.js handbook
 - astro handbook
 - html handbook
 - next.js pages router handbook
 - alpine.js handbook
 - htmx handbook
 - react handbook
 - sql handbook
 - git cheat sheet
 - laravel handbook
 - express handbook
 - swift handbook
 - go handbook
 - php handbook
 - python handbook
 - cli handbook
 - c handbook
 
subscribe to my newsletter to get them
Terms: by subscribing to the newsletter you agree the following terms and conditions and privacy policy. The aim of the newsletter is to keep you up to date about new tutorials, new book releases or courses organized by Flavio. If you wish to unsubscribe from the newsletter, you can click the unsubscribe link that's present at the bottom of each email, anytime. I will not communicate/spread/publish or otherwise give away your address. Your email address is the only personal information collected, and it's only collected for the primary purpose of keeping you informed through the newsletter. It's stored in a secure server based in the EU. You can contact Flavio by emailing flavio@flaviocopes.com. These terms and conditions are governed by the laws in force in Italy and you unconditionally submit to the jurisdiction of the courts of Italy.