📅  最后修改于: 2020-10-30 06:35:51             🧑  作者: Mango
Python rjust()方法右对齐字符串,并用fillchars填充剩余的空间。此方法返回一个右对齐的新字符串,并用fillchars填充。
rjust(width[, fillchar])
它返回一个右对齐的字符串。
让我们看一下rjust()方法的一些例子,以了解它的功能。
# Python rjust() method example
# Variable declaration
str = 'Javatpoint'
# Calling function
str = str.rjust(20)
# Displaying result
print(str)
输出:
j | a | v | a | p | o | i | n | t |
# Python rjust() method example
# Variable declaration
str = 'Javatpoint'
# Calling function
str = str.rjust(15,"$")
# Displaying result
print(str)
输出:
$ | $ | $ | $ | $ | j | a | v | a | p | o | i | n | t |