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