Python3 string.zfill()方法

2019-10-16 23:11:37
zfill()方法用零來填充墊字串左側寬度。

語法

以下是zfill()方法的語法 -
str.zfill(width)

引數

  • width -- 這是字串的最終寬度。填充零之後的總寬度。

返回值

此方法返回填充字串

範例

下面的範例顯示 zfill()方法的使用
#!/usr/bin/python3
str = "this is string example....wow!!!"
print ("str.zfill : ",str.zfill(40))
print ("str.zfill : ",str.zfill(50))
當我們執行上面的程式,會產生以下結果 -
str.zfill :  00000000this is string example....wow!!!
str.zfill :  000000000000000000this is string example....wow!!!