Created
January 24, 2019 22:01
-
-
Save binarygalwalkin/d06e710f19681e635d5bf318699bce32 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 builtins | |
>>> dir(builtins) | |
['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', | |
'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', | |
'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', | |
'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', | |
'EOFError', 'Ellipsis', 'EnvironmentError', 'Exception', 'False', | |
'FileExistsError', 'FileNotFoundError', 'FloatingPointError', | |
'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', | |
'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', | |
'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', | |
'MemoryError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', | |
'NotImplementedError', 'OSError', 'OverflowError', | |
'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', | |
'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning', | |
'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', | |
'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError', | |
'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', | |
'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', | |
'ValueError', 'Warning', 'ZeroDivisionError', '_', '__build_class__', | |
'__debug__', '__doc__', '__import__', '__name__', '__package__', 'abs', | |
'all', 'any', 'ascii', 'bin', 'bool', 'bytearray', 'bytes', 'callable', | |
'chr', 'classmethod', 'compile', 'complex', 'copyright', 'credits', | |
'delattr', 'dict', 'dir', 'divmod', 'enumerate', 'eval', 'exec', 'exit', | |
'filter', 'float', 'format', 'frozenset', 'getattr', 'globals', 'hasattr', | |
'hash', 'help', 'hex', 'id', 'input', 'int', 'isinstance', 'issubclass', | |
'iter', 'len', 'license', 'list', 'locals', 'map', 'max', 'memoryview', | |
'min', 'next', 'object', 'oct', 'open', 'ord', 'pow', 'print', 'property', | |
'quit', 'range', 'repr', 'reversed', 'round', 'set', 'setattr', 'slice', | |
'sorted', 'staticmethod', 'str', 'sum', 'super', 'tuple', 'type', 'vars', | |
'zip'] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment