如何查看方法的文档或源代码,而不是在Pycharm中键入

时间:2019-05-16 04:06:08

标签: python pycharm documentation

环境:

  • Ubuntu 16.04
  • Pycharm 2019.1.2
  • Python 3.7

测试源代码:

with open('./demo.py') as f:
    f.readline()

如果使用Pycharm的Scientific Mode来查看文档,它将仅显示typing hint,如下所示:

enter image description here

但是如果使用Ipython,我可以查看文档:

In[2]: f.readline?
Signature: f.readline(size=-1, /)
Docstring:
Read until newline or EOF.

Returns an empty string if EOF is hit immediately.
Type:      builtin_function_or_method

0 个答案:

没有答案