📜  Python string.rjust()方法

📅  最后修改于: 2020-10-30 06:35:51             🧑  作者: Mango

Python字符串rjust()方法

Python rjust()方法右对齐字符串,并用fillchars填充剩余的空间。此方法返回一个右对齐的新字符串,并用fillchars填充。

签名

rjust(width[, fillchar])

参量

  • width:给定字符串的宽度。
  • fillchar:字符填写字符串中的剩余空间。它是可选的。

返回

它返回一个右对齐的字符串。

让我们看一下rjust()方法的一些例子,以了解它的功能。

Python字符串rjust()方法示例1

# 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()方法示例2

# 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