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

upper()

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

此函数在数组中的每个元素上调用str.upper函数以返回大写数组元素。

import numpy as np 
print np.char.upper('hello') 
print np.char.upper(['hello','world'])

这是它的输出 -

HELLO
['HELLO' 'WORLD']