Thursday, July 30, 2026
HomeLanguagesnumpy string operations | isalpha() function

numpy string operations | isalpha() function

numpy.core.defchararray.isalpha(arr) function returns True for each element if all characters in the string are alphabetic and there is at least one character; returns false otherwise.

Parameters:
arr : array_like of str or unicode.

Returns : [ndarray] Output array of bools.

Code #1 :




# Python program explaining
# numpy.char.isalpha() method 
  
import numpy as geek
  
# input array
in_arr = geek.array([ 'abcd', 'ac1bd', 'abdc', 'dcba', 'ab cd'] )
print ("Input array : ", in_arr) 
  
out_arr = geek.char.isalpha(in_arr)
print ("Output array: ", out_arr)


Output:

Input array :  ['abcd' 'ac1bd' 'abdc' 'dcba' 'ab cd']
Output array:  [ True False  True  True False]

 
Code #2 :




# Python program explaining
# numpy.char.isalpha() method 
  
import numpy as geek
  
# input array
in_arr = geek.array([ 'neveropen', 'for', 'neveropen', 'wow !'] )
print ("Input array : ", in_arr) 
  
out_arr = geek.char.isalpha(in_arr)
print ("Output array: ", out_arr)


Output:

Input array :  ['neveropen' 'for' 'neveropen' 'wow!']
Output array:  [ True  True  True False]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6981 POSTS0 COMMENTS
Umr Jansen
6973 POSTS0 COMMENTS