PyCharm Python控制台错误地显示文档字符串

时间:2017-07-09 22:31:57

标签: python console ipython pycharm

我的PyCharm中的控制台打印文档不正确 - 它仍然有\ n符号代替新行,并且只打印出一个长行。有人知道这个问题是什么吗?

http://imgur.com/a/DqipY这是我所描述的图像。

1 个答案:

答案 0 :(得分:0)

使用print功能和__doc__属性显示文档字符串。

import numpy as np
print(np.array.__doc__)

Create an array.
Parameters
----------
object : array_like
    An array, any object exposing the array interface, an object whose
    __array__ method returns an array, or any (nested) sequence.
dtype : data-type, optional
    The desired data-type for the array.  If not given, then the type will
    be determined as the minimum type required to hold the objects in the
...