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']
相关用法
- Python numpy.ma.where()用法及代码示例
- Python numpy.ix_()用法及代码示例
- Python numpy.cov()用法及代码示例
- Python Numpy recarray.ptp()用法及代码示例
- Python numpy.issctype()用法及代码示例
- Python Numpy MaskedArray.all()用法及代码示例
- Python Numpy recarray.put()用法及代码示例
- Python Numpy recarray.dot()用法及代码示例
- Python Numpy recarray.min()用法及代码示例
- Python Numpy recarray.max()用法及代码示例
- Python Numpy recarray.mean()用法及代码示例
- Python numpy.find_common_type()用法及代码示例
- Python numpy.promote_types()用法及代码示例
- Python Numpy MaskedArray.any()用法及代码示例
- Python numpy.typename()用法及代码示例
- Python numpy.intersect1d()用法及代码示例
- Python numpy.in1d()用法及代码示例
- Python numpy.union1d()用法及代码示例
注:本文由纯净天空筛选整理自Yash_R大神的英文原创作品 numpy.char.add() function in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。