numpy.char.join#
- char.join(sep, seq)[source]#
Return a string which is the concatenation of the strings in the sequence seq.
Calls
str.join
element-wise.- Parameters:
- separray-like, with
StringDType
,bytes_
, orstr_
dtype - seqarray-like, with
StringDType
,bytes_
, orstr_
dtype
- separray-like, with
- Returns:
- outndarray
Output array of
StringDType
,bytes_
orstr_
dtype, depending on input types
See also
Examples
>>> 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')