numpy.char.upper() 函数
此函数对数组中的每个元素调用str.upper 函数以返回大写数组元素。
import numpy as np print np.char.upper('hello') print np.char.upper(['hello','world'])
这是它的输出 −
HELLO ['HELLO' 'WORLD']
此函数对数组中的每个元素调用str.upper 函数以返回大写数组元素。
import numpy as np print np.char.upper('hello') print np.char.upper(['hello','world'])
这是它的输出 −
HELLO ['HELLO' 'WORLD']
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。