I keep noticing blocks of code starting with import string, import re or import sys.
I know that you must import a module before you can use it. Is the import based on the object?
|
|
The import is based on what module you want to access the names of. |
|||
|
|
|
Python has modules that give the code more functionalities. |
|||
|
|
Will have the effect of adding a
This will look inside the os package, inside the path subpackage, and create a local reference to the
Suggest you look at a couple of tutorials that cover importing. |
|||
|
|
