用法:
StringMethods.is_vowel(position) → SeriesOrIndex
对于
position
处的字符是元音而不是辅音的字符串,返回 true。position
参数也可以是一个整数列表,用于检查每个字符串的不同字符。如果position
大于字符串长度,则为该字符串返回 False。- position: int or list-like:
在每个字符串中检查的字符位置。
- bool dtype 的系列或索引。
参数:
返回:
例子:
>>> import cudf >>> ser = cudf.Series(["toy", "trouble"]) >>> ser.str.is_vowel(1) 0 True 1 False dtype: bool >>> positions = cudf.Series([2, 3]) >>> ser.str.is_vowel(positions) 0 False 1 True dtype: bool
相关用法
- Python cudf.core.column.string.StringMethods.is_consonant用法及代码示例
- Python cudf.core.column.string.StringMethods.isdecimal用法及代码示例
- Python cudf.core.column.string.StringMethods.isspace用法及代码示例
- Python cudf.core.column.string.StringMethods.islower用法及代码示例
- Python cudf.core.column.string.StringMethods.isfloat用法及代码示例
- Python cudf.core.column.string.StringMethods.isalnum用法及代码示例
- Python cudf.core.column.string.StringMethods.ishex用法及代码示例
- Python cudf.core.column.string.StringMethods.isnumeric用法及代码示例
- Python cudf.core.column.string.StringMethods.isupper用法及代码示例
- Python cudf.core.column.string.StringMethods.isipv4用法及代码示例
- Python cudf.core.column.string.StringMethods.istimestamp用法及代码示例
- Python cudf.core.column.string.StringMethods.isalpha用法及代码示例
- Python cudf.core.column.string.StringMethods.isdigit用法及代码示例
- Python cudf.core.column.string.StringMethods.isinteger用法及代码示例
- Python cudf.core.column.string.StringMethods.isempty用法及代码示例
- Python cudf.core.column.string.StringMethods.istitle用法及代码示例
- Python cudf.core.column.string.StringMethods.insert用法及代码示例
- Python cudf.core.column.string.StringMethods.index用法及代码示例
- Python cudf.core.column.string.StringMethods.ip_to_int用法及代码示例
- Python cudf.core.column.string.StringMethods.ip2int用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.core.column.string.StringMethods.is_vowel。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。