无涯教程-NumPy - upper()函数

48 阅读1分钟

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

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

这是它的输出-

HELLO
[HELLO WORLD]

参考链接

www.learnfk.com/numpy/numpy…