A Beginner’s Guide to Importing in Python
Learn to use the ‘import’, ‘from’, and ‘as’ commands
Importing modules is a critical skill when learning Python. To keep the language lightweight and fast, only a small core is available by default in any given Python script — you as the author are expected to then import whatever else is needed.