operaciones de string numpy | función menos()

numpy.core.defchararray.less(arr1, arr2) es otra función para realizar operaciones de string en NumPy. Comprueba los elementos de dos arrays de strings con la misma forma uno por uno y devuelve True si los elementos de arr1 son menores que los elementos de arr2, es decir, arr1 < arr2. De lo contrario, devuelve False .

Parámetros:  
arr1: array_like de str o unicode.1st array de entrada. 
arr2 : array_like de str o unicode.2nd array de entrada.
Devuelve: [ndarray] Array de salida de bools, o un solo bool si arr1 y arr2 son escalares.

Código #1:  

Python3

# Python program explaining
# numpy.char.less() method
 
# importing numpy
import numpy as geek
 
# input arrays 
in_arr1 = geek.array('numpy')
print ("1st Input array : ", in_arr1)
 
in_arr2 = geek.array('number')
print ("2nd Input array : ", in_arr2) 
 
# checking if in_arr1 < in_arr2
out_arr = geek.char.less(in_arr1, in_arr2)
print ("Output array: ", out_arr)
Producción: 

1st Input array :  numpy
2nd Input array :  number
Output array:  False

 

  
Código #2: 

Python3

# Python program explaining
# numpy.char.less() method
 
# importing numpy
import numpy as geek
 
# input arrays 
in_arr1 = geek.array(['Geeks', 'for', 'Geek', 'Numpy'])
print ("1st Input array : ", in_arr1)
 
in_arr2 = geek.array(['Geek', 'for', 'geek', 'numpy'])
print ("2nd Input array : ", in_arr2)
 
# checking if in_arr1 < in_arr2
out_arr = geek.char.less(in_arr1, in_arr2)
print ("Output array: ", out_arr)
Producción: 

1st Input array :  ['Geeks' 'for' 'Geek' 'Numpy']
2nd Input array :  ['Geek' 'for' 'geek' 'numpy']
Output array:  [False False  True  True]

 

  
Código #3: 

Python3

# Python program explaining
# numpy.char.less() method
 
# importing numpy
import numpy as geek
 
# input arrays 
in_arr1 = geek.array(['10', '11', '122', '15'])
print ("1st Input array : ", in_arr1)
  
in_arr2 = geek.array(['10', '13', '121', '141'])
print ("2nd Input array : ", in_arr2)
 
# checking if in_arr1 < in_arr2
out_arr = geek.char.less(in_arr1, in_arr2)
print ("Output array: ", out_arr)
Producción: 

1st Input array :  ['10' '11' '122' '15']
2nd Input array :  ['10' '13' '121' '141']
Output array:  [False  True False 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 *