Return a string which is the concatenation of the strings in the sequence seq.
Calls str.join element-wise.
StringDType, bytes_, or str_ dtype
StringDType, bytes_, or str_ dtype
Output array of StringDType, bytes_ or str_ dtype, depending on input types
See also
>>> 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')
© 2005–2024 NumPy Developers
Licensed under the 3-clause BSD License.
https://numpy.org/doc/2.4/reference/generated/numpy.char.join.html