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

title()

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

此函数返回输入字符串的标题类型,每个单词的首字母大写。

import numpy as np 
print np.char.title('hello how are you?')

其产出如下 -

Hello How Are You?