Return an array with the elements converted to lowercase.
Call str.lower element-wise.
For 8-bit strings, this method is locale-dependent.
StringDType, bytes_, or str_ dtype
Input array.
Output array of StringDType, bytes_ or str_ dtype, depending on input types
See also
>>> import numpy as np >>> c = np.array(['A1B C', '1BCA', 'BCA1']); c array(['A1B C', '1BCA', 'BCA1'], dtype='<U5') >>> np.strings.lower(c) array(['a1b c', '1bca', 'bca1'], dtype='<U5')
© 2005–2024 NumPy Developers
Licensed under the 3-clause BSD License.
https://numpy.org/doc/2.4/reference/generated/numpy.char.lower.html