Python zfill()方法

2021-09-04 17:30 更新

Python zfill()方法


描述

Python zfill() 方法返回指定長度的字符串,原字符串右對齊,前面填充0。

語法

zfill()方法語法:

str.zfill(width)

參數

  • width -- 指定字符串的長度。原字符串右對齊,前面填充0。

返回值

返回指定長度的字符串。

實例

以下實例展示了 zfill()函數的使用方法:

#!/usr/bin/python

str = "this is string example....wow!!!";

print str.zfill(40);
print str.zfill(50);

以上實例輸出結果如下:

00000000this is string example....wow!!!
000000000000000000this is string example....wow!!!
以上內容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號