📜  重复 NumPy字符串数组的所有元素

📅  最后修改于: 2022-05-13 01:54:32.659000             🧑  作者: Mango

重复 NumPy字符串数组的所有元素

让我们看看如何将给定字符串数组的所有元素重复 3 次。

例子 :

我们将为此任务使用numpy.char.multiply(a, i)方法。

numpy.char.multiply(a, i)

示例 1:重复 3 次。

# importing the module
import numpy as np
  
# created array of strings
arr = np.array(['Akash', 'Rohit', 'Ayush', 
                'Dhruv', 'Radhika'], dtype = np.str)
print("Original Array :")
print(arr)
  
# with the help of np.char.multiply()
# repeating the characters 3 times
new_array = np.char.multiply(arr, 3)
print("\nNew array :")
print(new_array)

输出 :

示例 2:重复 2 次。

# importing the module
import numpy as np
  
# created array of strings
arr = np.array(['Geeks', 'for', 'Geeks'])
print("Original Array :")
print(arr)
  
# with the help of np.char.multiply()
# repeating the characters 3 times
new_array = np.char.multiply(arr, 2)
print("\nNew array :")
print(new_array)

输出 :

Original Array :
['Geeks' 'for' 'Geeks']

New array :
['GeeksGeeks' 'forfor' 'GeeksGeeks']