| [ Web Proxy ] |
| Viewing: https://numpy.org/doc/stable/reference/generated/../generated/../generated/numpy.char.upper.html | [Back] [Original] |
Return an array with the elements converted to uppercase.
Calls str.upper element-wise.
For 8-bit strings, this method is locale-dependent.
StringDType, bytes_, or str_ dtypeInput array.
Output array of StringDType, bytes_ or str_ dtype,
depending on input types
See also
Examples
>>> import numpy as np
>>> c = np.array(['a1b c', '1bca', 'bca1']); c
array(['a1b c', '1bca', 'bca1'], dtype='<U5')
>>> np.strings.upper(c)
array(['A1B C', '1BCA', 'BCA1'], dtype='<U5')
| Web Proxy Viewer | New URL | Original Page |