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:
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:
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]
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
14 Jan, 2019
Like Article
Save Article