{ } Raw JSON

bundles / numpy 2.4.4 / numpy / strings / title

_ArrayFunctionDispatcher

numpy.strings:title

source: /numpy/_core/strings.py :1242

Signature

def   title ( a )

Summary

Return element-wise title cased version of string or unicode.

Extended Summary

Title case words start with uppercase characters, all remaining cased characters are lowercase.

Calls str.title element-wise.

For 8-bit strings, this method is locale-dependent.

Parameters

a : array-like, with ``StringDType``, ``bytes_``, or ``str_`` dtype

Input array.

Returns

out : ndarray

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

Examples

import numpy as np
c=np.array(['a1b c','1b ca','b ca1','ca1b'],'S5'); c
np.strings.title(c)

See also

str.title

Aliases

  • numpy.char.title