Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我使用带有新print()功能的 Python 2.6:
print()
from __future__ import print_function
现在,我怎样才能pydoc打印该功能的文档?一个简单的
pydoc
$ pydoc print
将打印有关 2.6 版打印功能的文档。
(不用说,我可以在网上找到文档,但我希望能够在命令行上使用 pydoc 访问它。)
不幸的是,没有捷径:
$ python -c 'from __future__ import print_function; help(print)'
这可能不是您想要的,但在我的系统上,我可以这样做pydoc3.2 print,因为我同时安装了 python 2.6 和 python 3.2...
pydoc3.2 print