NumPy 字符串函数 numpy.char.lower()
这个函数返回一个将元素转换为小写的数组。它会对每个元素调用 str.lower 。
import numpy as np
print np.char.lower(['HELLO','WORLD'])
print np.char.lower('HELLO')
它的输出如下:
['hello' 'world']
hello
这个函数返回一个将元素转换为小写的数组。它会对每个元素调用 str.lower 。
import numpy as np
print np.char.lower(['HELLO','WORLD'])
print np.char.lower('HELLO')
它的输出如下:
['hello' 'world']
hello