当前位置: 首页 > 文档资料 > NumPy 中文教程 >

lower()

优质
小牛编辑
134浏览
2023-12-01

此函数返回一个数组,其元素转换为小写。 它为每个元素调用str.lower

import numpy as np 
print np.char.lower(['HELLO','WORLD']) 
print np.char.lower('HELLO')

其输出如下 -

['hello' 'world']
hello