El método add() de la clase char en el módulo NumPy se usa para
Sintaxis: numpy.char.add(x1, x2)
Parámetros:
- x1: primer arreglo a ser concatenado (concatenado al principio)
- x2: segunda array a concatenar (concatenada al final)
Devoluciones: Array de strings o unicode
Ejemplo 1: usar el método en 2 arrays de strings de un solo elemento.
Python3
# importing the module import numpy as np # create the arrays x1 = ['Hello'] x2 = ['World'] print("The arrays are : ") print(x1) print(x2) # using the char.add() method result = np.char.add(x1, x2) print("\nThe concatenated array is :") print(result)
Producción :
The arrays are : ['Hello'] ['World'] The concatenated array is : ['HelloWorld']
Ejemplo 2: usar el método en 2 arrays de strings de elementos múltiples.
Python3
# importing the module import numpy as np # create the arrays x1 = ['Hello', 'to', 'all'] x2 = ['Geeks', 'for', 'Geeks'] print("The arrays are : ") print(x1) print(x2) # using the char.add() method result = np.char.add(x1, x2) print("\nThe concatenated array is :") print(result)
Producción :
The arrays are : ['Hello', 'to', 'all'] ['Geeks', 'for', 'Geeks'] The concatenated array is : ['HelloGeeks' 'tofor' 'allGeeks']