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


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


NumPy模块中char类的multiply()方法用于按元素 字符串多个串联。

numpy.char.multiply()

用法:numpy.char.multiply(a, i)

参数:
  • a:str或unicode数组
  • i:重复次数

Returns:字符串数组

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

Python3

# 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:在多元素字符串数组上使用该方法。

Python3

# 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']



相关用法


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