在IDLE中得到所有的内置函数
小甲鱼那本书上写得是dir(_ _builtins_ _),但是一直报错,只有打出print(dir(_ _builtins_ _))才有结果,这是版本的问题还是其他什么问题 你好!首先,你遇到的问题是版本问题。在Python 3中,使用内置函数`dir()`可以获取一个模块、类或对象中的所有属性和方法。而`__builtins__`是一个内置模块,包含了Python解释器中的所有内置函数,例如`print()`、`len()`等。
在IDLE中,如果直接运行`dir(__builtins__)`会报错,因为在IDLE中,`__builtins__`并没有被默认导入。解决这个问题的办法是使用`print(dir(__builtins__))`,这样就可以打印出所有的内置函数了。
所以,你遇到的问题不是版本问题,而是使用IDLE运行`dir(__builtins__)`的方式不正确。将其改为`print(dir(__builtins__))`即可正常输出。
以下是示例代码:
print(dir(__builtins__))
希望能帮助到你,如果还有其他问题,请随时提问!
以上回复来自 FishC AI 小助理,如未能正确解答您的问题,请继续追问。 是两个下划线 <Shift + -> 连起来,中间没有空格
__(正确)
_ _(错误) 歌者文明清理员 发表于 2023-12-17 22:57
是两个下划线连起来,中间没有空格
__(正确)
还真是,牛啊哥
水中有明月 发表于 2023-12-17 23:09
还真是,牛啊哥
求最佳 dir(__builtins__)
好使 dir(__builtins__)
['ArithmeticError', 'AssertionError', 'AttributeError', 'BaseException', 'BaseExceptionGroup', 'BlockingIOError', 'BrokenPipeError', 'BufferError', 'BytesWarning', 'ChildProcessError', 'ConnectionAbortedError', 'ConnectionError', 'ConnectionRefusedError', 'ConnectionResetError', 'DeprecationWarning', 'EOFError', 'Ellipsis', 'EncodingWarning', 'EnvironmentError', 'Exception', 'ExceptionGroup', 'False', 'FileExistsError', 'FileNotFoundError', 'FloatingPointError', 'FutureWarning', 'GeneratorExit', 'IOError', 'ImportError', 'ImportWarning', 'IndentationError', 'IndexError', 'InterruptedError', 'IsADirectoryError', 'KeyError', 'KeyboardInterrupt', 'LookupError', 'MemoryError', 'ModuleNotFoundError', 'NameError', 'None', 'NotADirectoryError', 'NotImplemented', 'NotImplementedError', 'OSError', 'OverflowError', 'PendingDeprecationWarning', 'PermissionError', 'ProcessLookupError', 'RecursionError', 'ReferenceError', 'ResourceWarning', 'RuntimeError', 'RuntimeWarning', 'StopAsyncIteration', 'StopIteration', 'SyntaxError', 'SyntaxWarning', 'SystemError', 'SystemExit', 'TabError', 'TimeoutError', 'True', 'TypeError', 'UnboundLocalError', 'UnicodeDecodeError', 'UnicodeEncodeError', 'UnicodeError', 'UnicodeTranslateError', 'UnicodeWarning', 'UserWarning', 'ValueError', 'Warning', 'WindowsError', 'ZeroDivisionError', '__build_class__', '__debug__', '__doc__', '__import__', '__loader__', '__name__', '__package__', '__spec__', 'abs', 'aiter', 'all', 'anext', 'any', 'ascii', 'bin', 'bool', 'breakpoint', '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']
页:
[1]