Term
|
Definition
a module that comes pre-installed with Python. |
|
|
Term
|
Definition
much like a variable in a Python script, except that an environmental variable is stored by the computer's operating system and can be accessed by every program running on the computer. |
|
|
Term
|
Definition
A programmer can specify names to import from a module by using the from keyword in an import statement: from module_name import name1, name2, ... |
|
|
Term
|
Definition
a file a programmer typically writes, and pass that file as input to the interpreter. |
|
|
Term
|
Definition
a file containing Python code that can be imported and used by scripts, other modules, or the interactive interpreter. |
|
|
Term
|
Definition
execute the code contained by the module, and make the definitions within that module available for use by the importing program. |
|
|
Term
|
Definition
A module being required by another program. |
|
|
Term
|
Definition
where a dictionary of the loaded modules is stored. |
|
|
Term
|
Definition
an environmental variable that the programmer sets in the operating system. |
|
|
Term
|
Definition
Python standard library module that contains a number of algorithms for creating a secure hash of a text message. |
|
|
Term
|
Definition
A secure hash correlates exactly to a single series of characters |
|
|