python:检索所有内置函数的名称
如何在运行时检索当前 python
发行版的所有 builtins
名称?
How can I retrieve names of all builtins
for my current python
distribution during runtime?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定这是否足够,但是您可以启动解释器并执行以下操作
您可以看到 dir 值
并且从模块中,您可以将内置导入为模块
I am not sure if this suffices, but you can fire up the interpreter and do the following
And you can see the dir value
And from the modules, you can import builtin as module
在 Python 3 中:
仅内置函数(无例外或 dunder 变量):
In Python 3:
Just the built-in functions (no exceptions or dunder variables):