Thursday, October 23, 2025
HomeLanguagesnumpy string operations | isspace() function

numpy string operations | isspace() function

numpy.core.defchararray.isspace(arr) function returns true for each element if there are only whitespace characters in the string and there is at least one character.It returns false otherwise.

Syntax: numpy.core.isspace(arr)

Parameters:
arr : array_like of str or unicode.

Returns : [ndarray] Output array of bools.

Code #1 :




# Python program explaining
# numpy.char.isspace() method 
  
import numpy as geek
  
# input arrays  not containing any space
in_arr = geek.array([ 'Geeksforneveropen', 'Codechef'] )
print ("Input array : ", in_arr) 
  
out_arr = geek.char.isspace(in_arr)
print ("Output array: ", out_arr)


Output:

Input array :  ['Geeksforneveropen' 'Codechef']
Output array:  [False False]

 
Code #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\nneveropen', 'Code\tchef'] )
print ("Input array : ", in_arr) 
  
out_arr = geek.char.isspace(in_arr)
print ("Output array: ", out_arr)


Output:

Input array :  ['Geeks\nfor\nneveropen' 'Code\tchef']
Output array:  [False False]

 
Code #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)


Output:

Input array :  ['\n' '\t' ' ' '\n\t ']
Output array:  [ True  True  True  True]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS