numpy.core.defchararray.lower(arr)函数用于返回将元素转换为小写形式的数组。
参数:
arr :[数组]输入数组,可以是str或unicode。
返回:[ndarray]输出str或unicode的小写数组,具体取决于输入类型。
代码1:
# Python Program explaining
# numpy.char.lower() function
import numpy as geek
in_arr = geek.array(['P4Q R', '4Q RP', 'Q RP4', 'RP4Q'])
print ("input array:", in_arr)
out_arr = geek.char.lower(in_arr)
print ("output lowercased array:", out_arr)
输出:
input array: ['P4Q R' '4Q RP' 'Q RP4' 'RP4Q'] output lowercased array:['p4q r' '4q rp' 'q rp4' 'rp4q']
代码2:
# Python Program explaining
# numpy.char.lower() function
import numpy as geek
in_arr = geek.array(['GEEKS', 'FOR', 'GEEKS'])
print ("input array:", in_arr)
out_arr = geek.char.lower(in_arr)
print ("output lowercased array:", out_arr )
输出:
input array: ['GEEKS' 'FOR' 'GEEKS'] output lowercased array:['geeks' 'for' 'geeks']
相关用法
- Numpy string less()用法及代码示例
- Numpy string split()用法及代码示例
- Python numpy string greater_equal()用法及代码示例
- Numpy string count()用法及代码示例
- Numpy string isdigit()用法及代码示例
- Numpy string isnumeric()用法及代码示例
- Numpy string rfind()用法及代码示例
- Python numpy string less_equal()用法及代码示例
- Numpy string swapcase()用法及代码示例
- Numpy string isspace()用法及代码示例
- Numpy string isupper()用法及代码示例
- Numpy string islower()用法及代码示例
- Numpy string index()用法及代码示例
- Numpy string zfill()用法及代码示例
- Numpy string find()用法及代码示例
注:本文由纯净天空筛选整理自jana_sayantan大神的英文原创作品 numpy string operations | lower() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。