当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python String rjust()用法及代码示例


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

签名

rjust(width[, fillchar])

参数

  • 宽度:给定字符串的宽度。
  • 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






相关用法


注:本文由纯净天空筛选整理自 Python String rjust() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。