numpy.core.defchararray.isnumeric(arr)
La función devuelve verdadero para cada elemento si solo hay caracteres numéricos y hay al menos un carácter. De lo contrario, devuelve falso.
Parámetros:
arr : array_like de str o unicode.Devuelve: [ndarray] Array de salida de bools.
Código #1:
# Python program explaining # numpy.char.isnumeric() method import numpy as geek # input array contains only numeric character in_arr = geek.array([ '1000', '2000'] ) print ("Input array : ", in_arr) out_arr = geek.char.isnumeric(in_arr) print ("Output array: ", out_arr)
Producción:
Input array : ['1000' '2000'] Output array: [ True True]
Código #2:
# Python program explaining # numpy.char.isnumeric() method import numpy as geek # input array in_arr = geek.array([ 'python3.5', 'a1000', '1234 ab'] ) print ("Input array : ", in_arr) out_arr = geek.char.isnumeric(in_arr) print ("Output array: ", out_arr)
Producción:
Input array : ['python3.5' 'a1000' '1234 ab'] Output array: [False False False]
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