numpy.core.defchararray.isspace(arr)
La función devuelve verdadero para cada elemento si solo hay caracteres de espacio en blanco en la string y hay al menos un carácter. De lo contrario, devuelve falso.
Sintaxis: numpy.core.isspace(arr)
Parámetros:
arr : array_like de str o unicode.Devuelve: [ndarray] Array de salida de bools.
Código #1:
# Python program explaining # numpy.char.isspace() method import numpy as geek # input arrays not containing any space in_arr = geek.array([ 'Geeksforgeeks', 'Codechef'] ) print ("Input array : ", in_arr) out_arr = geek.char.isspace(in_arr) print ("Output array: ", out_arr)
Producción:
Input array : ['Geeksforgeeks' 'Codechef'] Output array: [False False]
Código #2:
# Python program explaining # numpy.char.isspace() method import numpy as geek # input arrays containing string along with space in_arr = geek.array([ 'Geeks\nfor\ngeeks', 'Code\tchef'] ) print ("Input array : ", in_arr) out_arr = geek.char.isspace(in_arr) print ("Output array: ", out_arr)
Producción:
Input array : ['Geeks\nfor\ngeeks' 'Code\tchef'] Output array: [False False]
Código #3:
# Python program explaining # numpy.char.isspace() method import numpy as geek # input arrays containing only white space in_arr = geek.array([ '\n', '\t', ' ', '\n\t '] ) print ("Input array : ", in_arr) out_arr = geek.char.isspace(in_arr) print ("Output array: ", out_arr)
Producción:
Input array : ['\n' '\t' ' ' '\n\t '] Output array: [ True True True True]
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