numpy.strings.title#

strings.title(a)[source]#

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

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

Callsstr.title element-wise.

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

Parameters:
aarray-like, withStringDType,bytes_, orstr_ dtype

Input array.

Returns:
outndarray

Output array ofStringDType,bytes_ orstr_ dtype,depending on input types

See also

str.title

Examples

>>>importnumpyasnp>>>c=np.array(['a1b c','1b ca','b ca1','ca1b'],'S5');carray(['a1b c', '1b ca', 'b ca1', 'ca1b'],    dtype='|S5')>>>np.strings.title(c)array(['A1B C', '1B Ca', 'B Ca1', 'Ca1B'],    dtype='|S5')
On this page