Python 的 str.zfill(~)
方法返回源字符串的副本,其中用零 (0) 填充直至提供的长度。
参数
1. width
| number
返回字符串的长度,包括左侧填充的零。
返回值
源字符串的副本,左侧填充'0'
。
例子
基本用法
要返回 'Hello'
的副本,该副本用零填充,最多为 7
字符:
x = 'Hello'
x.zfill(7)
'00Hello'
宽度参数
要返回 'Hello'
的副本,该副本用零填充,最多为 3
字符:
x = 'Hello'
x.zfill(3)
'Hello'
由于 3
提供的宽度短于源字符串的长度,因此我们返回源字符串 'Hello'
。
相关用法
- Python String zfill()用法及代码示例
- Python String count方法用法及代码示例
- Python String isnumeric方法用法及代码示例
- Python String Center()用法及代码示例
- Python String rstrip方法用法及代码示例
- Python String decode()用法及代码示例
- Python String count()用法及代码示例
- Python String join()用法及代码示例
- Python String casefold()用法及代码示例
- Python String isalnum()用法及代码示例
- Python String endswith方法用法及代码示例
- Python String rsplit()用法及代码示例
- Python String isidentifier()用法及代码示例
- Python String startswith()用法及代码示例
- Python String rjust方法用法及代码示例
- Python String rpartition()用法及代码示例
- Python String rpartition方法用法及代码示例
- Python String ljust方法用法及代码示例
- Python String splitlines()用法及代码示例
- Python String upper()用法及代码示例
- Python String isprintable()用法及代码示例
- Python String split方法用法及代码示例
- Python String splitlines方法用法及代码示例
- Python String strip方法用法及代码示例
- Python String translate()用法及代码示例
注:本文由纯净天空筛选整理自Isshin Inada大神的英文原创作品 Python String | zfill method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。