Python ljust() 方法返回一个原字符串左对齐,并使用空格填充至指定长度的新字符串。如果指定的长度小于原字符串的长度则返回原字符串。
ljust()方法语法:
str.ljust(width[, fillchar])
返回一个原字符串左对齐,并使用空格填充至指定长度的新字符串。如果指定的长度小于原字符串的长度则返回原字符串。
以下实例展示了ljust()的使用方法:
#!/usr/bin/python str = "this is string example....wow!!!"; print str.ljust(50, '0');
以上实例输出结果如下:
this is string example....wow!!!000000000000000000