2010-10-08 53 views
3

如何在運行時檢索當前python分配的所有builtins的名稱?python:檢索所有內置函數的名稱

+0

你指的是哪個buildins?一個對象的方法和屬性,標準庫中的模塊?標準功能? – synthesizerpatel 2010-10-08 18:32:58

+0

我的意思是:http://docs.python.org/dev/py3k/library/functions.html,但現在我意識到,我也需要內建類型和例外。 – gruszczy 2010-10-08 18:37:02

+0

由於它在文檔中,您還需要了解哪些內容? – 2010-10-08 22:49:00

回答

4

我不知道這是否就足夠了,但你可以火​​起來的解釋並執行以下操作

>>> dir(__builtins__) 
['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', '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'] 

而且你可以看到DIR值

>>> dir() 
['__builtins__', '__doc__', '__name__', '__package__', 'atexit'] 

而且從模塊,你可以導入內置模塊作爲

+1

但是,如果我在模塊內調用它,我不會得到我想要的。爲什麼它不同?實際上,我需要在模塊中調用它,但是我沒有得到所有這些名稱,而是['__class__','__contains__','__delattr__','__delitem__','__doc__','__eq__', ,'__hash__','__init__','__iter__','__le__','__len__','__lt__','__ne__','__new__','__reduce__','__reduce_ex__','__repr__','__setattr__',' __'__ str__','__subclasshook __','clear','copy','fromkeys','get','items','keys','pop','popitem','setdefault' ,'update','values'] – gruszczy 2010-10-08 18:40:36

+0

好吧,看來,我可以'在python 3k中導入builtins',並簡單地在其上運行'dir'。非常感謝:-) – gruszczy 2010-10-08 18:47:08

+0

@gruszczy:正確,dir提供了命名空間,在你的情況下它提供了你調用的命名空間。 – pyfunc 2010-10-08 18:49:48

相關問題