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() 方法