Created
June 17, 2015 11:38
-
-
Save krazylearner/55087cadbfd0c24457e4 to your computer and use it in GitHub Desktop.
he built-in function dir() is used to find out which names a module defines. It returns a sorted list of strings:
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 | |
| >>> dir(sys) | |
| ['__displayhook__', '__doc__', '__excepthook__', '__name__', '__package__', | |
| '__stderr__', '__stdin__', '__stdout__', '_clear_type_cache', | |
| '_current_frames', '_getframe', '_mercurial', 'api_version', 'argv', | |
| 'builtin_module_names', 'byteorder', 'call_tracing', 'callstats', | |
| 'copyright', 'displayhook', 'dont_write_bytecode', 'exc_clear', 'exc_info', | |
| 'exc_traceback', 'exc_type', 'exc_value', 'excepthook', 'exec_prefix', | |
| 'executable', 'exit', 'flags', 'float_info', 'float_repr_style', | |
| 'getcheckinterval', 'getdefaultencoding', 'getdlopenflags', | |
| 'getfilesystemencoding', 'getobjects', 'getprofile', 'getrecursionlimit', | |
| 'getrefcount', 'getsizeof', 'gettotalrefcount', 'gettrace', 'hexversion', | |
| 'long_info', 'maxint', 'maxsize', 'maxunicode', 'meta_path', 'modules', | |
| 'path', 'path_hooks', 'path_importer_cache', 'platform', 'prefix', 'ps1', | |
| 'py3kwarning', 'setcheckinterval', 'setdlopenflags', 'setprofile', | |
| 'setrecursionlimit', 'settrace', 'stderr', 'stdin', 'stdout', 'subversion', | |
| 'version', 'version_info', 'warnoptions'] | |
| #Without arguments, dir() lists the names you have defined currently: | |
| >>> a = [1, 2, 3, 4, 5] | |
| >>> import fibo | |
| >>> fib = fibo.fib | |
| >>> dir() | |
| ['__builtins__', '__name__', '__package__', 'a', 'fib', 'fibo', 'sys'] | |
| #dir() does not list the names of built-in functions and variables. | |
| #If you want a list of those, they are defined in the standard module __builtin__: | |
| >>> import __builtin__ | |
| >>> dir(__builtin__) | |
| ['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', | |
| 'BufferError', 'BytesWarning', 'DeprecationWarning', 'EOFError', | |
| 'Ellipsis', 'EnvironmentError', 'Exception', 'False', 'FloatingPointError', | |
| 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', | |
| 'IndentationError', 'IndexError', 'KeyError', 'KeyboardInterrupt', | |
| 'LookupError', 'MemoryError', 'NameError', 'None', 'NotImplemented', | |
| 'NotImplementedError', 'OSError', 'OverflowError', | |
| 'PendingDeprecationWarning', 'ReferenceError', 'RuntimeError', | |
| 'RuntimeWarning', 'StandardError', 'StopIteration', 'SyntaxError', | |
| 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'True', | |
| 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', | |
| 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', | |
| 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', | |
| 'ZeroDivisionError', '_', '__debug__', '__doc__', '__import__', | |
| '__name__', '__package__', 'abs', 'all', 'any', 'apply', 'basestring', | |
| 'bin', 'bool', 'buffer', 'bytearray', 'bytes', 'callable', 'chr', | |
| 'classmethod', 'cmp', 'coerce', 'compile', 'complex', 'copyright', | |
| 'credits', 'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', | |
| 'execfile', 'exit', 'file', 'filter', 'float', 'format', 'frozenset', | |
| 'getattr', 'globals', 'hasattr', 'hash', 'help', 'hex', 'id', 'input', | |
| 'int', 'intern', 'isinstance', 'issubclass', 'iter', 'len', 'license', | |
| 'list', 'locals', 'long', 'map', 'max', 'memoryview', 'min', 'next', | |
| 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', 'quit', | |
| 'range', 'raw_input', 'reduce', 'reload', 'repr', 'reversed', 'round', | |
| 'set', 'setattr', 'slice', 'sorted', 'staticmethod', 'str', 'sum', 'super', | |
| 'tuple', 'type', 'unichr', 'unicode', 'vars', 'xrange', 'zip'] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment