实例
返回单词 "banana" 的 20 个字符长的右对齐版本:
txt = "banana" x = txt.rjust(20) print(x, "is my favorite fruit.")
定义和用法
rjust() 方法将使用指定的字符(默认为空格)作为填充字符,将字符串右对齐。
语法
string.rjust(length, character)
参数值
更多实例
使用字母 "O" 作为填充字符:
txt = "banana" x = txt.rjust(20, "O") print(x)