我的PyCharm中的控制台打印文档不正确 - 它仍然有\ n符号代替新行,并且只打印出一个长行。有人知道这个问题是什么吗?
http://imgur.com/a/DqipY这是我所描述的图像。
答案 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
...