当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python cudf.core.column.string.StringMethods.istitle用法及代码示例


用法:

StringMethods.istitle() → SeriesOrIndex

检查每个字符串是否为标题格式。每个单词的第一个字母应该是大写的,其余的应该是小写的。

等效于 str.istitle()

返回

对象的系列或索引

例子

>>> import cudf
>>> data = ['leopard', 'Golden Eagle', 'SNAKE', ''])
>>> s = cudf.Series(data)
>>> s.str.istitle()
0    False
1     True
2    False
3    False
dtype: bool

相关用法


注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.core.column.string.StringMethods.istitle。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。