Python 3 – string.ljust()方法
描述
方法 ljust() 返回字符串在长度为width的字符串中左对齐。使用指定的fillchar(默认为空格)进行填充。如果width小于len(s),则返回原始字符串。
语法
下面是 ljust() 方法的语法:
str.ljust(width[, fillchar])
参数
- width - 这是填充后的字符串总长度。
-
fillchar - 这是填充字符,默认为空格。
返回值
此方法返回字符串在长度为width的字符串中左对齐。使用指定的fillchar(默认为空格)进行填充。如果width小于len(s),则返回原始字符串。
示例
下面的示例显示了如何使用ljust()方法。
#!/usr/bin/python3
str = "this is string example....wow!!!"
print str.ljust(50, '*')
结果
运行以上程序会产生以下结果 –
this is string example....wow!!!******************