python 的rjust函数

Posted ceibaf

tags:

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

str.rjust(width[, fillchar])

返回字符串的长度宽度中右对齐的字符串。做了填充使用指定的fillchar (默认为一个空格)。返回原始字符串宽度是否小于或等于len(s)

2.4 版本中的更改:Fillchar参数的支持。

 

序列类型的切片操作:

 

s[i] ith item of s, origin 0  
s[i:j] slice of s from i to j  
s[i:j:k] slice of s from i to j with step k

 

以上是关于python 的rjust函数的主要内容,如果未能解决你的问题,请参考以下文章

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

在 Python 中使用 rjust() 并减少 for 循环

python3----ljust rjust center

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

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

Python学习笔记:print对齐之ljustrjustcenter