Python:
Hal is writing a package to handle multiple file systems. He is confused by the error displayed when he runs his import statements to test his package. He needs your help to fix the error.
To be more clear, Hal is wanting to make file.system a module and is separating out the different operating system handlers to their respective script files so he can import them individually. Try to import the module. Below are the empty script files inside his file_system folder.
__init__.py
linux.py
mac.py
windows.py
Python: Hal is writing a package to handle multiple file systems. He is confused by the...