{ } Raw JSON

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_`` dtype
seq : array-like, with ``StringDType``, ``bytes_``, or ``str_`` dtype

Returns

out : ndarray

Output array of StringDType, bytes_ or str_ dtype, depending on input types

Examples

import numpy as np

See also

str.join

Aliases

  • numpy.char.join