numpy.char.multiply#
- char.multiply(a, i)[源代码]#
返回 (a * i),即字符串的逐元素多次拼接。
i
中小于 0 的值被视为 0(产生空字符串)。- 参数:
- a类似数组,具有 np.bytes_ 或 np.str_ dtype
- i类似数组,具有任何整数 dtype
- 返回:
- outndarray
输出字符串或 Unicode 数组,取决于输入类型
注释
这是对 np.strings.multiply 的一个简单封装,当
i
不是整数时会引发 ValueError 异常。它仅用于向后兼容。示例
>>> import numpy as np >>> a = np.array(["a", "b", "c"]) >>> np.strings.multiply(a, 3) array(['aaa', 'bbb', 'ccc'], dtype='<U3') >>> i = np.array([1, 2, 3]) >>> np.strings.multiply(a, i) array(['a', 'bb', 'ccc'], dtype='<U3') >>> np.strings.multiply(np.array(['a']), i) array(['a', 'aa', 'aaa'], dtype='<U3') >>> a = np.array(['a', 'b', 'c', 'd', 'e', 'f']).reshape((2, 3)) >>> np.strings.multiply(a, 3) array([['aaa', 'bbb', 'ccc'], ['ddd', 'eee', 'fff']], dtype='<U3') >>> np.strings.multiply(a, i) array([['a', 'bb', 'ccc'], ['d', 'ee', 'fff']], dtype='<U3')