用法:
StringMethods.zfill(width: int) → SeriesOrIndex
通过添加 ‘0’ 字符来填充系列/索引中的字符串。
系列/索引中的字符串在字符串左侧用‘0’ 字符填充,以达到总字符串长度宽度。系列/索引中长度大于或等于宽度的字符串保持不变。
- width:int
结果字符串的最小长度;长度小于宽度的字符串在前面加上‘0’ 字符。
- str dtype 的系列/索引
返回带有前置 ‘0’ 字符的系列或索引。
参数:
返回:
注意:
与 str.zfill() 不同,它对字符串中的“+”/“-”有特殊处理。
例子:
>>> import cudf >>> s = cudf.Series(['-1', '1', '1000', None]) >>> s 0 -1 1 1 2 1000 3 <NA> dtype: object
请注意
None
不是字符串,因此它被转换为None
。'-1'
中的减号被视为常规字符,并将零添加到它的左侧(str.zfill() 会将其移到左侧)。1000
保持不变,因为它比宽度长。>>> s.str.zfill(3) 0 0-1 1 001 2 1000 3 <NA> dtype: object
相关用法
- Python cudf.core.column.string.StringMethods.is_vowel用法及代码示例
- Python cudf.core.column.string.StringMethods.endswith用法及代码示例
- Python cudf.core.column.string.StringMethods.title用法及代码示例
- Python cudf.core.column.string.StringMethods.contains用法及代码示例
- Python cudf.core.column.string.StringMethods.rsplit用法及代码示例
- Python cudf.core.column.string.StringMethods.hex_to_int用法及代码示例
- Python cudf.core.column.string.StringMethods.htoi用法及代码示例
- Python cudf.core.column.string.StringMethods.character_tokenize用法及代码示例
- Python cudf.core.column.string.StringMethods.normalize_characters用法及代码示例
- Python cudf.core.column.string.StringMethods.filter_alphanum用法及代码示例
- Python cudf.core.column.string.StringMethods.split用法及代码示例
- Python cudf.core.column.string.StringMethods.ngrams用法及代码示例
- Python cudf.core.column.string.StringMethods.replace_with_backrefs用法及代码示例
- Python cudf.core.column.string.StringMethods.insert用法及代码示例
- Python cudf.core.column.string.StringMethods.pad用法及代码示例
- Python cudf.core.column.string.StringMethods.replace用法及代码示例
- Python cudf.core.column.string.StringMethods.rstrip用法及代码示例
- Python cudf.core.column.string.StringMethods.replace_tokens用法及代码示例
- Python cudf.core.column.string.StringMethods.cat用法及代码示例
- Python cudf.core.column.string.StringMethods.filter_tokens用法及代码示例
注:本文由纯净天空筛选整理自rapids.ai大神的英文原创作品 cudf.core.column.string.StringMethods.zfill。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。