numpy.strings.upper — NumPy v2.6.dev0 Manual

Learn | NEPs | User Guide | API reference | Building from source | Development | Release notes | NumPy’s module structure | Array objects | Universal functions (ufunc) | Routines and objects by topic | Constants | Bit-wise operations | String functionality | Data type routines | Floating point error handling | Discrete Fourier Transform | Input and output | Linear algebra | Logic functions | Masked array operations | Mathematical functions | Miscellaneous routines | Random sampling | Set routines | Sorting, searching, and counting | Test support | Window functions

strings.upper(a)

[source]

#

Return an array with the elements converted to uppercase.

Calls

str.upper

element-wise.

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

Parameters:aarray-like, with StringDType, bytes_, or str_ dtypeInput array.

Returns:outndarrayOutput array of StringDType, bytes_ or str_ dtype, depending on input types

Examples

>>> importnumpyasnp>>> c=np.array(['a1b c','1bca','bca1']);carray(['a1b c', '1bca', 'bca1'], dtype='<U5')>>> np.strings.upper(c)array(['A1B C', '1BCA', 'BCA1'], dtype='<U5')

1 1