Friday, September 5, 2025
HomeLanguagesnumpy string operations | islower() function

numpy string operations | islower() function

numpy.core.defchararray.islower(arr) function returns True for each element if all cased characters in the string are lowercase and there is at least one cased character, It returns false otherwise.

Parameters:
arr : array_like of str or unicode

Returns : [ndarray] Output array of bools.

Code #1:




# Python Program explaining
# numpy.char.islower() function 
  
import numpy as geek 
  
  
in_arr = geek.array(['P4Q R', '4Q rP', 'Q rp4', 'rpq'])
print ("input array : ", in_arr)
  
out_arr = geek.char.islower(in_arr)
print ("output  array :", out_arr)


Output:

input array :  ['P4Q R' '4Q rP' 'Q rp4' 'rpq']
output array : [False False False  True]

 
Code #2:




# Python Program explaining
# numpy.char.lower() function 
  
import numpy as geek 
  
  
in_arr = geek.array(['GEEKS', 'for', 'Geeks'])
  
print ("input array : ", in_arr)
  
out_arr = geek.char.islower(in_arr)
print ("output array :", out_arr )


Output:

input array :  ['GEEKS' 'for' 'Geeks']
output array : [False  True False]

 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6752 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS