numpy.strings.lower#
- strings.lower(a)[source]#
返回一个元素转换为小写的数组。
按元素调用
str.lower
。对于 8 位字符串,此方法依赖于区域设置。
- 参数:
- a类似数组,具有
StringDType
、bytes_
或str_
数据类型 输入数组。
- a类似数组,具有
- 返回值:
- outndarray
输出数组,数据类型为
StringDType
、bytes_
或str_
,取决于输入类型
参见
示例
>>> 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')