bundles / numpy 2.4.4 / numpy / strings / _join
_ArrayFunctionDispatcher
numpy.strings:_join
source: /numpy/_core/strings.py :1358
Signature
def _join ( sep , seq ) Summary
Return a string which is the concatenation of the strings in the sequence seq.
Extended Summary
Calls str.join element-wise.
Parameters
sep: array-like, with ``StringDType``, ``bytes_``, or ``str_`` dtypeseq: array-like, with ``StringDType``, ``bytes_``, or ``str_`` dtype
Returns
out: ndarrayOutput array of
StringDType,bytes_orstr_dtype, depending on input types
Examples
import numpy as np
✓See also
- str.join
Aliases
-
numpy.char.join