Python Numpy np.char.enderswith()方法

Python Numpy np.char.enderswith()方法

在np.char.endswith()方法的帮助下,当数值以np.char.endswith()方法中传递的特定字符结束时,我们可以得到布尔数组。

语法: np.char.endswith()
返回:当数值以一个值结束时,返回布尔数组。

例子#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教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程