# In a file system path, we would separate the components of a path
# using / (Linux, macOS, etc.) or (Windows). In a Python import statement,
# however, we separate the path components using a dot (.).
import subdir.mymodule
subdir.mymodule.say_hello()