Created
September 19, 2012 18:56
-
-
Save bukzor/3751495 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| >>> import sys | |
| >>> sys.modules['math'] | |
| Traceback (most recent call last): | |
| File "<stdin>", line 1, in <module> | |
| KeyError: 'math' | |
| >>> import math | |
| >>> sys.modules['math'] | |
| <module 'math' (built-in)> | |
| >>> del sys.modules['math'] | |
| >>> math | |
| <module 'math' (built-in)> | |
| >>> del math | |
| >>> math | |
| Traceback (most recent call last): | |
| File "<stdin>", line 1, in <module> | |
| NameError: name 'math' is not defined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment