numpy.char.capitalize() 函数

此函数返回首字母大写的字符串副本。

import numpy as np 
print np.char.capitalize('hello world')

它的输出是 −

Hello world 

❮ NumPy 字符串函数