numpy.char.upper(a)
Return an array with the elements converted to uppercase.
Calls str.upper
element-wise.
For 8-bit strings, this method is locale-dependent.
Parameters: |
|
---|---|
Returns: |
|
See also
>>> c = np.array(['a1b c', '1bca', 'bca1']); c array(['a1b c', '1bca', 'bca1'], dtype='<U5') >>> np.char.upper(c) array(['A1B C', '1BCA', 'BCA1'], dtype='<U5')
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
https://docs.scipy.org/doc/numpy-1.17.0/reference/generated/numpy.char.upper.html