當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python cudf.core.column.string.StringMethods.isinteger用法及代碼示例


用法:

StringMethods.isinteger() → SeriesOrIndex

檢查每個字符串中的所有字符是否都是整數。

如果字符串有零個字符,則為該檢查返回 False。

返回

布爾係列或索引

與原始係列/索引長度相同的布爾值係列或索引。

例子

>>> import cudf
>>> s = cudf.Series(["1", "0.1", "+100", "-15", "abc"])
>>> s.str.isinteger()
0     True
1    False
2     True
3     True
4    False
dtype: bool
>>> s = cudf.Series(["this is plan text", "", "10 10"])
>>> s.str.isinteger()
0    False
1    False
2    False
dtype: bool

相關用法


注:本文由純淨天空篩選整理自rapids.ai大神的英文原創作品 cudf.core.column.string.StringMethods.isinteger。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。