numpy.char.upper#
- char.upper(a)[source]#
Return an array with the elements converted to uppercase.
Calls
str.upperelement-wise.For 8-bit strings, this method is locale-dependent.
- Parameters:
- aarray-like, with
StringDType,bytes_, orstr_dtype Input array.
- aarray-like, with
- Returns:
- outndarray
Output array of
StringDType,bytes_orstr_dtype, depending on input types
See also
Examples
>>> 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')