借助np.char.endswith()
方法,当值以传入的特定字符结尾时,我们可以获得布尔数组np.char.endswith()
方法。
用法:np.char.endswith()
返回:Return the boolean array when values ends with a value.
范例1:
在这个例子中,我们可以通过使用np.char.endswith()
方法,当与中的字符串值匹配时,我们能够获取布尔数组np.char.endswith()
方法。
# import numpy
import numpy as np
# using np.char.endswith() method
a = np.array(['geeks', 'for', 'geeks'])
gfg = np.char.endswith(a, 'ks')
print(gfg)
输出:
[ True False True]
范例2:
# import numpy
import numpy as np
# using np.char.endswith() method
a = np.array([['geeks', 'for', 'geeks'], ['jitender', 'author', 'gfg']])
gfg = np.char.endswith(a, 'r')
print(gfg)
输出:
[[False True False]
[ True True False]]
相关用法
- Python numpy.ma.ids()用法及代码示例
- Python Numpy np.fft()用法及代码示例
- Python Numpy np.polyvander()用法及代码示例
- Python Numpy np.legsub()用法及代码示例
- Python Numpy np.legadd()用法及代码示例
- Python Numpy np.leggauss()用法及代码示例
- Python numpy.busday_count()用法及代码示例
- Python numpy.printoptions()用法及代码示例
- Python numpy.lookfor()用法及代码示例
- Python Numpy np.legvander()用法及代码示例
- Python Numpy np.legmul()用法及代码示例
- Python Numpy np.legvander2d()用法及代码示例
- Python Numpy np.lagvander2d()用法及代码示例
- Python Numpy np.polygrid3d()用法及代码示例
- Python Numpy np.legdiv()用法及代码示例
注:本文由纯净天空筛选整理自Jitender_1998大神的英文原创作品 Python | Numpy np.char.endswith() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。