Product SiteDocumentation Site

13.2. Importing modules

There are different ways to import modules. We already saw one way to do this. You can even import selected functions from modules. To do so:
>>> from bars import simplebar, starbar
>>> simplebar(20)
--------------------