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


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


用法:

StringMethods.code_points() → SeriesOrIndex

通过使用每个字符串的每个字符的 UTF-8 代码点值填充数组来返回一个数组。此函数使用len() 方法来确定每个sub-array 整数的大小。

返回

系列或索引。

例子

>>> import cudf
>>> s = cudf.Series(["a","xyz", "éee"])
>>> s.str.code_points()
0       97
1      120
2      121
3      122
4    50089
5      101
6      101
dtype: int32
>>> s = cudf.Series(["abc"])
>>> s.str.code_points()
0    97
1    98
2    99
dtype: int32

相关用法


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