numpy.char.str_len(arr)
La función se utiliza para realizar operaciones de string en numpy. Devuelve la longitud de cada elemento de string sabia.
Parámetros:
arr : array_like de str o unicode.Input array.Devuelve: [ndarray] Array de salida de enteros.
Código #1:
# Python program explaining # numpy.char.str_len() method # importing numpy import numpy as geek # input array in_arr = geek.array(['geeks for geeks']) print ("Input array : ", in_arr) # output array out_arr = geek.char.str_len(in_arr) print ("Output array containing length: ", out_arr)
Producción:
Input array : ['geeks for geeks'] Output array containing length: [15]
Código #2:
# Python program explaining # numpy.char.str_len() method # importing numpy import numpy as geek # input array in_arr = geek.array(['Numpy', 'Python', 'Pandas']) print ("Input array : ", in_arr) # output array out_arr = geek.char.str_len(in_arr) print ("Output array containing length: ", out_arr)
Producción:
Input array : ['Numpy' 'Python' 'Pandas'] Output array containing length: [5 6 6]
Publicación traducida automáticamente
Artículo escrito por jana_sayantan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA