numpy.core.defchararray.istitle(arr)
La función devuelve True para cada elemento de la array si el elemento es una string con título y hay al menos un carácter; de lo contrario, devuelve false.
Parámetros:
arr : array_like de str o unicodeDevuelve: [ndarray] Array de salida de bools.
Código #1:
# Python Program explaining # numpy.char.istitle() 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.istitle(in_arr) print ("output array :", out_arr)
Producción:
input array : ['P4Q R' '4Q Rp' 'Q rP4' 'Rpq'] output array : [ True True False True]
Código #2:
# Python Program explaining # numpy.char.istitle() function import numpy as geek in_arr = geek.array(['GEEKS', 'for', 'Geeks']) print ("input array : ", in_arr) out_arr = geek.char.istitle(in_arr) print ("output array :", out_arr )
Producción:
input array : ['GEEKS' 'for' 'Geeks'] output array : [False False True]
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