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


Python Numpy np.char.endswith()用法及代码示例


借助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]]



相关用法


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