当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy.lookfor()用法及代码示例


借助numpy.lookfor()方法,我们可以通过使用numpy获取有关模块的信息numpy.lookfor()方法。

用法: numpy.lookfor(module_name)
返回:Return the information about the module.

范例1:
在这个例子中,我们可以通过使用numpy.lookfor()方法,我们能够获取有关模块的信息。


# import numpy 
import numpy as np 
  
# using numpy.lookfor() method 
print(np.lookfor("isin"))

输出:

Search results for ‘isin’
————————-
numpy.isinf
Test element-wise for positive or negative infinity.
numpy.compat.is_pathlib_path
Check whether obj is a pathlib.Path object.
numpy.isin
Calculates `element in test_elements`, broadcasting over `element` only.

范例2:

# import numpy 
import numpy as np 
  
# using numpy.lookfor() method 
print(np.lookfor("isdigit"))

输出:

Search results for ‘isdigit’
————————-
numpy.bytes0.isdigit
B.isdigit() -> bool
numpy.str0.isdigit
S.isdigit() -> bool
numpy.chararray
chararray(shape, itemsize=1, unicode=False, buffer=None, offset=0,
numpy.char.isdigit
Returns true for each element if all characters in the string are
numpy.chararray.isdigit
Returns true for each element if all characters in the string are
None



相关用法


注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | numpy.lookfor() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。