Python:我的进程中导入了哪些模块?
如何获取已导入流程的模块列表?
How can I get a list of the modules that have been imported into my process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何获取已导入流程的模块列表?
How can I get a list of the modules that have been imported into my process?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
sys.modules.values()
...如果您确实需要模块的名称,请使用 sys.modules.keys()dir() 不是你想要的。
sys.modules.values()
... if you really need the names of the modules, use sys.modules.keys()dir()
is not what you want.如果您只想查看导入的模块(以及它们导入的顺序),您还可以使用
-v
选项运行解释器You can also run the interpreter with
-v
option if you just want to see the modules that are imported (and the order they are imported in)