numpy字符串操作upper()函数
numpy.core.defchararray.upper(arr) :函数用于返回一个元素被转换为大写字母的数组。
参数:
arr : [ array_like ] 输入数组,可以是str或unicode。
返回: [ndarray] 根据输入类型,输出str或unicode的大写数组。
代码 #1:
# Python Program explaining
# numpy.char.upper() 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.upper(in_arr)
print ("output uppercased array :", out_arr)
输出:
input array : ['p4q r' '4q rp' 'q rp4' 'rp4q']
output uppercased array : ['P4Q R' '4Q RP' 'Q RP4' 'RP4Q']
代码 #2:
# Python Program explaining
# numpy.char.upper() function
import numpy as geek
in_arr = geek.array(['geeks', 'for', 'geeks'])
print ("input array : ", in_arr)
out_arr = geek.char.upper(in_arr)
print ("output uppercased array :", out_arr )
输出:
input array : ['geeks' 'for' 'geeks']
output uppercased array : ['GEEKS' 'FOR' 'GEEKS']