当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python numpy.char.add()用法及代码示例


NumPy模块中char类的add()方法用于str或unicode的两个数组的逐元素字符串连接。

numpy.char.add()

用法:numpy.char.add(x1, x2)

参数:
  • x1:要连接的第一个数组(在开头连接)
  • x2:要连接的第二个数组(在末尾连接)

Returns:字符串或Unicode数组

范例1:在2个单元素字符串数组上使用该方法。

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)

输出:

The arrays are:
['Hello']
['World']

The concatenated array is:
['HelloWorld']


范例2:在2个多个元素的字符串数组上使用该方法。

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)

输出:

The arrays are:
['Hello', 'to', 'all']
['Geeks', 'for', 'Geeks']

The concatenated array is:
['HelloGeeks' 'tofor' 'allGeeks']





相关用法


注:本文由纯净天空筛选整理自Yash_R大神的英文原创作品 numpy.char.add() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。