Python中的numpy.char.multiply()函数
NumPy模块中char类的multiply()方法用于元素间的字符串多重连接。
numpy.char.multiply()
语法 : numpy.char.multiply(a, i)
参数 :
- a:str或unicode的数组
- i : 重复的次数
返回 : 字符串数组
例子1 :在一个单元素字符串数组上使用该方法。
# importing the module
import numpy as np
# created an array
arr1 = np.array(['Geeks'])
print("Original Array :")
print(arr1)
# number of times to be repeated
i = 3
# using the char.multiply() method
arr2 = np.char.multiply(arr1, i)
print("\nNew array :")
print(arr2)
输出 :
Original Array :
['Geeks']
New array :
['GeeksGeeksGeeks']
例子2:在多元素字符串数组上使用该方法。
# importing the module
import numpy as np
# created an array
arr1 = np.array(['Geeks', 'for', 'Geeks'])
print("Original Array :")
print(arr1)
# number of times to be repeated
i = 2
# using the char.multiply() method
arr2 = np.char.multiply(arr1, i)
print("\nNew array :")
print(arr2)
输出 :
Original Array :
['Geeks' 'for' 'Geeks']
New array :
['GeeksGeeks' 'forfor' 'GeeksGeeks']