扫码一下
查看教程更方便
Python zfill() 方法返回指定长度的字符串,原字符串右对齐,前面填充0。
zfill()方法语法:
str.zfill(width)
返回指定长度的字符串。
以下实例展示了 zfill()函数的使用方法:
#!/usr/bin/python3
str = "this is string example....wow!!!";
print (str.zfill(40));
print (str.zfill(50));
上述代码执行结果如下:
00000000this is string example....wow!!!
000000000000000000this is string example....wow!!!