str.zfill(width)
width -- 這是字串的最終寬度。填充零之後的總寬度。
#!/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!!!