python3 rjust()函数笔记

Posted

tags:

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

#rjust(12,‘l‘)"12是字符串的长度,l是当字符串不够长的时候,用l填充。并且字符串右对齐"。返回一个原字符串右对齐,并使用空格填充至长度 width 的新字符串。如果指定的长度小于字符串的长度则返回原字符串
l=["123","1252454","894651245"]
for i in l:
print(i)
print(i.rjust(12,‘l‘))




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

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

Python学习笔记:print对齐之ljustrjustcenter

python 的rjust函数

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

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

python常用函数 R