rjust()方法

Posted xiaohei001

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了rjust()方法相关的知识,希望对你有一定的参考价值。

rjust()方法

描述

rjust() 返回一个原字符串右对齐,并使用指定字符填充至指定长度的新字符串,默认的填充字符为空格。如果指定的长度小于原字符串的长度则返回原字符串。

语法

rjust()方法语法:

str.rjust(width[, fillchar])

参数

  • width -- 指定填充指定字符后中字符串的总长度.

  • fillchar -- 填充的字符,默认为空格。

返回值

返回一个原字符串右对齐,并使用空格填充至长度 width 的新字符串。如果指定的长度小于字符串的长度则返回原字符串

实例

以下实例展示了rjust()函数的使用方法:

str = "this is string example....wow!!!"
print(str.rjust(50, "*"))

# 结果为
# ******************this is string example....wow!!!

以表格的形式输出一个数的平方和立方

for x in range(1, 11):
    print(repr(x).rjust(2), repr(x * x).rjust(3), end=" ")
    print(repr(x * x * x).rjust(4))


 1   1    1
 2   4    8
 3   9   27
 4  16   64
 5  25  125
 6  36  216
 7  49  343
 8  64  512
 9  81  729
10 100 1000

 

以上是关于rjust()方法的主要内容,如果未能解决你的问题,请参考以下文章

python ljust,rjust,center,zfill对齐使用方法

47-python基础-python3-字符串-常用字符串方法

python3 rjust()函数笔记

python3----ljust rjust center

Python:str.ljust()str.rjust()str.center()函数

python 的rjust函数