zfill()方法返回字符串的副本,在给定字符串的左侧填充“ 0”个字符。
用法:
str.zfill(length)
参数:
- length:length是从zfill()返回的字符串的长度,左侧填充了“ 0”位数。
返回:
Returns a copy of the string with '0' characters padded to the leftside of the given string.
代码1
text = "geeks for geeks"
print(text.zfill(25))
print(text.zfill(20))
# Given length is less than
# the length od original string
print(text.zfill(10))
输出:
0000000000geeks for geeks 00000geeks for geeks geeks for geeks
代码2
number = "6041"
print(number.zfill(8))
number = "+6041"
print(number.zfill(8))
text = "--anything%(&%(%)*^"
print(text.zfill(20))
输出:
00006041 +0006041 -0-anything%(&%(%)*^
相关用法
- Numpy string zfill()用法及代码示例
- Python Pandas Series.str.zfill()用法及代码示例
- Python string max()用法及代码示例
- Python string min()用法及代码示例
注:本文由纯净天空筛选整理自pawan_asipu大神的英文原创作品 Python String | zfill()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。