Created
February 12, 2014 15:48
-
-
Save mattpavelle/8958018 to your computer and use it in GitHub Desktop.
reminder: vars displays a dictionary corresponding to the current local symbol table, dir displays the list of names in the current local scope
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 math | |
from pprint import pprint | |
pprint(vars(math)) | |
pprint(dir(math)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment