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


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


numpy.core.defchararray.rindex()函数在找不到子字符串子项时引发ValueError。逐元素调用str.rindex。

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

参数:

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

sub:[str或unicode]输入字符串或unicode。



start,end:[int,可选]可选参数start和end被解释为切片表示法。

Return:返回int的输出数组。

代码1:

Python3

# Python program explaining  
# numpy.char.rindex() function  
  
# importing numpy as geek   
import numpy as geek  
  
arr = "GeeksforGeeks - A computer science portal for geeks"
sub = 'science'
  
gfg = geek.char.rindex(arr, sub) 
    
print (gfg)

输出:

27

代码2:

Python3

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

输出:

46

相关用法


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