此函数返回输入字符串的标题类型,每个单词的首字母大写。
import numpy as np print np.char.title('hello how are you?')
其产出如下 -
Hello How Are You?