和 ljust() 方法类似,不同之处在于,rjust() 方法是向字符串的左侧填充指定字符,从而达到右对齐文本的目的。
rjust() 方法的基本格式如下:
S.rjust(width[, fillchar])
其中各个参数的含义如下:
【例 1】
S = 'http://c.biancheng.net/python/' addr = 'http://c.biancheng.net' print(S.rjust(35)) print(addr.rjust(35))
输出结果为:
http://c.biancheng.net/python/ http://c.biancheng.net
可以看到,每行字符串都占用 35 个字节的位置,实现了整体的右对齐效果。
【例 2】
S = 'http://c.biancheng.net/python/' addr = 'http://c.biancheng.net' print(S.rjust(35,'-')) print(addr.rjust(35,'-'))
输出结果为:
-----http://c.biancheng.net/python/ -------------http://c.biancheng.net
更多...
加载中...