python rjust()
函数用于使用右对齐的方式填充字符串到指定的长度,如果指定的长度小于原字符串的长度则返回原字符串。
与之相似的函数为左对齐的方式填充字符串 ljust()函数。
语法
str.ljust(width, fillchar)
参数
- width:指定字符串要填充的长度。
- fillchar:指定要填充的字符,默认为空格。
返回值
返回填充后新的字符串
程序示例
#!/usr/bin/python
# coding=utf-8
str = "python"
print(str.rjust(30,"*")) #指定宽度为30,填充字符为*
print(str.rjust(30)) #指定宽度为30,填充字符默认为空格
print("1",str.rjust(30)) #对比
程序运行结果:
************************python
python
1 python
python
1 python