In this lesson, you’ll learn about importing *
from a package. For the purposes of the following discussion, the previously defined package is expanded to contain some additional modules:

There are now four modules defined in the pkg
directory. Their contents are as shown below.
mod1.py
:
def load_data():
print('loading data using mod1.load_data()')
class Customer:
pass
mod2.py
:
def clean_data():
print('cleaning data using mod2.clean_data()')
class Location:
pass
Jakob Fredriksson on July 28, 2020
I’ve been grinding Python for a couple of months by now but I’ve been cheating and “skipped” some basics. Basics like this. Great teaching throughout this course, much desired and much needed basics fell in place.
Your color-theme btw? It’s awesome!