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


Python numpy string startswith()用法及代码示例


numpy.core.defchararray.startswith()函数返回一个布尔数组,该数组为True,其中的字符串元素以前缀开头,否则为False。

用法: numpy.core.defchararray.startswith(arr, prefix, start = 0, end = None)

参数:

arr:[str或Unicode的array-like] str的Array-like。

prefix:[str]输入字符串。



开始,结束:[int,可选]使用可选的开始,从该位置开始测试。在可选端,停止在该位置进行比较。

Return:[ndarray]返回布尔数组。

代码1:

Python3

# Python program explaining  
# numpy.char.startswith() function  
  
# importing numpy as geek   
import numpy as geek  
  
arr = "GeeksforGeeks - A computer science portal"
prefix = 'Geeks'
  
gfg = geek.char.startswith(arr, prefix, start = 0, end = None) 
    
print (gfg)

输出:

True

代码2:

Python3

# Python program explaining  
# numpy.char.startswith() function  
  
# importing numpy as geek   
import numpy as geek  
  
arr = "GeeksforGeeks - A computer science portal"
prefix = 'None'
  
gfg = geek.char.startswith(arr, prefix, start = 0, end = None) 
    
print (gfg)

输出:

False

相关用法


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