Python ljust()方法
Python ljust()方法
Python ljust() 方法返回一个原字符串左对齐,并使用空格填充至指定长度的新字符串。如果指定的长度小于原字符串的长度则返回原字符串。
语法
ljust()方法语法:
str.ljust(width[, fillchar])
参数
- width -- 指定字符串长度。
- fillchar -- 填充字符,默认为空格。
返回值
返回一个原字符串左对齐,并使用空格填充至指定长度的新字符串。如果指定的长度小于原字符串的长度则返回原字符串。
实例
以下实例展示了ljust()的使用方法:
#!/usr/bin/python str = "this is string example....wow/b64/"; print str.ljust(50, '0');
以上实例输出结果如下:
this is string example....wow/b64/000000000000000000
相关文章
- Python 循环语句
- Python 日期和时间
- Python 矩阵
- Python 算法分析
- Python 分而治之
- Python 递归
- Python3 集合(Set)
- Python3 for while 循环语句
- Python fabs() 函数
- Python File tell() 方法
- Python File truncate() 方法
- Python os.lchflags() 方法
- Python os.major() 方法
- Python os.pipe() 方法
- Python os.renames() 方法
- Python isalnum()方法
- Python List index()方法
- Python 字典 Dictionary type()方法
- Python time altzone()方法
- Python time mktime()方法