Congratulations! You’ve cemented your knowledge of how to build your own application by putting related code into separate files called modules, which you can organize into packages. You’ve also tested your ability to access names from other modules with the import statement.
In this video course, you’ve practiced:
- Creating your own modules
- Using modules in another file through the importstatement
- Organizing several modules into a package with __init__.py
You’ve reinforced what you learned in Python Basics: Modules and Packages, and you’ve also gained insight into how to tackle coding challenges in general, which can be a great way to level up as a developer.
For more on modules and packages, check out:

