numpy.char.join#
- char.join(sep, seq)[源代码]#
返回一个字符串,该字符串是序列 seq 中字符串的串联。
逐元素调用
str.join
。- 参数:
- sep类数组,具有
StringDType
,bytes_
或str_
dtype - seq类数组,具有
StringDType
,bytes_
或str_
dtype
- sep类数组,具有
- 返回:
- outndarray
输出数组,类型为
StringDType
,bytes_
或str_
dtype,具体取决于输入类型
另请参阅
示例
>>> import numpy as np >>> np.strings.join('-', 'osd') array('o-s-d', dtype='<U5')
>>> np.strings.join(['-', '.'], ['ghc', 'osd']) array(['g-h-c', 'o.s.d'], dtype='<U5')