Skip to main content

Importing Python File

Things to keep note of when working with Python files


to import a python file in another folder, remember to have a __init__.py file in that folder

.
├── gmae_code/
│ ├── \_\_init.py
│ ├── player.py
│ └── laser.py
└── main.py

to import from a module in the same file do from .laser import Laser

## player.py

from .laser import Laser
..
.

Back to log