Python中的 numpy.info()函数
在 Numpy 中,我们可以借助numpy.info()函数获取有关函数、类或模块的所有信息,例如参数是什么以及返回值的类型是什么。此函数返回函数、类或模块的帮助信息。
Syntax: numpy.info(numpy.info(object=None, maxwidth=76, output=<_io.TextIOWrapper name='
Parameters:
objectobject or str, optional: This is object or name for input to get information about.
maxwidthint, optional: For Width.
outputfile like object, optional: Object opening mode.
toplevelstr, optional: Start search at this level.
Return: All the information about add function in the numpy.
例子 :
Python
import numpy as np
print(np.info(np.add))
输出 :