Python Packages
Learn how Python packages organize modules into folders.
Example Structure
game/
__init__.py
level/
__init__.py
start.pyImporting from a Package
import game.level.start
game.level.start.select_difficulty("easy")from game.level import start
start.select_difficulty("easy")Notes
Last updated