numpy.core.defchararray.index(arr, substring, start=0, end=None)
: encuentra el índice más bajo de la substring en el rango especificado, pero si no se encuentra la substring, genera ValueError.
Parámetros:
arr : tipo array o string a buscar.
substring: substring a buscar.
inicio, fin: [int, opcional] Rango en el que buscar.Devuelve: una array de enteros con el índice más bajo de la substring encontrada genera ValueError si no se encuentra la substring.
Código #1:
# Python Program illustrating # numpy.char.index() method import numpy as np arr = ['this is geeks for geek'] print ("arr : ", arr) print ("\nindex of 'geeks' : ", np.char.index(arr, 'geeks'))
Producción:
arr : ['this is geeks for geek'] index of 'geeks' : [8]
Código #2:
# Python Program illustrating # numpy.char.index() method import numpy as np arr = ['this is geeks for geek'] print ("\nindex of 'geeks' : ", np.char.index(arr, 'geeks', start = 2)) print ("\nindex of 'geeks' : ", np.char.index(arr, 'geeks', start = 10)) print ("\nindex of 'geek' : ", np.char.index(arr, 'geek', start = 10))
Producción:
index of 'geeks' : [8] ValueError: substring not found index of 'geek' : [18]
Publicación traducida automáticamente
Artículo escrito por Mohit Gupta_OMG 🙂 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA