bundles / numpy 2.5.0.dev0+git20251130.2de293a / numpy / strings / _join
_ArrayFunctionDispatcher
numpy.strings:_join
source: build-install/usr/lib/python3.14/site-packages/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