Saturday, December 13, 2025
HomeLanguagesnumpy string operations | isdigit() function

numpy string operations | isdigit() function

numpy.core.defchararray.isdigit(arr) function returns True for each element if all characters in the string are digits 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.isdigit() method 
  
import numpy as geek
  
# input array contains only digits
in_arr = geek.array([ '1000', '2000'] )
print ("Input array : ", in_arr) 
  
out_arr = geek.char.isdigit(in_arr)
print ("Output array: ", out_arr)


Output:

Input array :  ['1000' '2000']
Output array:  [ True  True]

 
Code #2 :




# Python program explaining
# numpy.char.isdigit() method 
  
import numpy as geek
  
# input array contains digits along with space and alphabets
in_arr = geek.array([ '1000 2', 'a1000', '1234 ab'] )
print ("Input array : ", in_arr) 
  
out_arr = geek.char.isdigit(in_arr)
print ("Output array: ", out_arr)


Output:

Input array :  ['1000 2' 'a1000' '1234 ab']
Output array:  [False False False]
Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32446 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6814 POSTS0 COMMENTS
Nicole Veronica
11952 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12030 POSTS0 COMMENTS
Shaida Kate Naidoo
6949 POSTS0 COMMENTS
Ted Musemwa
7199 POSTS0 COMMENTS
Thapelo Manthata
6895 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS