當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。