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


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


用法:

StringMethods.htoi() → SeriesOrIndex

返回由每个十六进制字符串表示的整数值。字符串被解释为具有十六进制(base-16)字符。

返回

str dtype 的系列/索引

例子

>>> import cudf
>>> s = cudf.Series(["1234", "ABCDEF", "1A2", "cafe"])
>>> s.str.htoi()
0        4660
1    11259375
2         418
3       51966
dtype: int64

相关用法


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