关于python:打印所有可以导入的内容

Print everything that can be imported

本问题已经有最佳答案,请猛点这里访问。

Possible Duplicate:
Unable to get a list of installed Python modules

如何打印python3脚本中可供导入的所有模块的列表?


要通过sys.path以编程方式而不是在交互式会话中访问所有已安装模块的列表,可以使用pkgutil.iter_modules()


ipython中,可以键入"importt"。

在标准的python解释器中,您可以键入"help('modules')"。

在命令行中,可以使用pydocmodules