Python zfill()方法
Python zfill()方法
Python zfill() 方法返回指定長度的字符串,原字符串右對齊,前面填充0。
語法
zfill()方法語法:
str.zfill(width)
參數
- width -- 指定字符串的長度。原字符串右對齊,前面填充0。
返回值
返回指定長度的字符串。
實例
以下實例展示了 zfill()函數的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print str.zfill(40); print str.zfill(50);
以上實例輸出結果如下:
00000000this is string example....wow/b64/ 000000000000000000this is string example....wow/b64/
相關文章
- Python 條件語句
- Python 循環語句
- Python 字典 Dictionary
- Python 操作 MySQL 數據庫
- Python 網絡編程
- Python GUI編程 Tkinter
- Python 節點
- Python 算法設計
- Python3 字符串(String)
- Python3 面向對象
- Python3 XML 解析
- Python abs() 函數
- Python randrange() 函數
- Python File flush() 方法
- Python os.chmod() 方法
- Python os.fdopen() 方法
- Python os.lchown() 方法
- Python os.open() 方法
- Python os.read() 方法
- Python os.tcgetpgrp() 方法