operaciones de string numpy | función islower()

numpy.core.defchararray.islower(arr) La función devuelve True para cada elemento si todos los caracteres en mayúsculas de la string están en minúsculas y hay al menos un carácter en minúsculas. De lo contrario, devuelve falso.

Parámetros:
arr : array_like de str o unicode

Devuelve: [ndarray] Array de salida de bools.

Código #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)
Producción:

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

 
Código #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 )
Producción:

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

Publicación traducida automáticamente

Artículo escrito por jana_sayantan y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *