黄色电影一区二区,韩国少妇自慰A片免费看,精品人妻少妇一级毛片免费蜜桃AV按摩师 ,超碰 香蕉

Python zfill()方法

Python zfill()方法

Python 字符串Python 字符串

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

 

語法

zfill()方法語法:

str.zfill(width)

 

參數(shù)

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

 

返回值

返回指定長度的字符串。

 

實(shí)例

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

#!/usr/bin/python

str = "this is string example....wow/b64/";

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

以上實(shí)例輸出結(jié)果如下:

00000000this is string example....wow/b64/
000000000000000000this is string example....wow/b64/

Python 字符串Python 字符串

下一節(jié):Python 列表 List

Python 教程

相關(guān)文章