On this page
numpy.char.title
- numpy.char.title(a)
- 
    Return element-wise title cased version of string or unicode. Title case words start with uppercase characters, all remaining cased characters are lowercase. Calls str.titleelement-wise.For 8-bit strings, this method is locale-dependent. - Parameters
- 
      - aarray_like, {str, unicode}
- 
        Input array. 
 
- Returns
- 
      - outndarray
- 
        Output array of str or unicode, depending on input type 
 
 See also Examples>>> c=np.array(['a1b c','1b ca','b ca1','ca1b'],'S5'); c array(['a1b c', '1b ca', 'b ca1', 'ca1b'], dtype='|S5') >>> np.char.title(c) array(['A1B C', '1B Ca', 'B Ca1', 'Ca1B'], dtype='|S5')
© 2005–2020 NumPy Developers
Licensed under the 3-clause BSD License.
 https://numpy.org/doc/1.19/reference/generated/numpy.char.title.html