用法:
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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。