S.ljust(width[, fillchar])
其中各个参数的含义如下:S = 'http://c.biancheng.net/python/' addr = 'http://c.biancheng.net' print(S.ljust(35)) print(addr.ljust(35))输出结果为:
http://c.biancheng.net/python/ http://c.biancheng.net注意,该输出结果中除了明显可见的网址字符串外,其后还有空格字符存在,每行一共 35 个字符长度。
S = 'http://c.biancheng.net/python/' addr = 'http://c.biancheng.net' print(S.ljust(35,'-')) print(addr.ljust(35,'-'))输出结果为:
http://c.biancheng.net/python/----- http://c.biancheng.net-------------此程序和例 1 的唯一区别是,填充字符从空格改为‘-’。
S.rjust(width[, fillchar])
其中各个参数的含义和 ljust() 完全相同,所以这里不再重复描述。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 个字节的位置,实现了整体的右对齐效果。
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
S.center(width[, fillchar])
其中各个参数的含义和 ljust()、rjust() 方法相同。S = 'http://c.biancheng.net/python/' addr = 'http://c.biancheng.net' print(S.center(35,)) print(addr.center(35,))输出结果为:
http://c.biancheng.net/python/ http://c.biancheng.net
S = 'http://c.biancheng.net/python/' addr = 'http://c.biancheng.net' print(S.center(35,'-')) print(addr.center(35,'-'))输出结果为:
---http://c.biancheng.net/python/-- -------http://c.biancheng.net------
Copyright © 广州京杭网络科技有限公司 2005-2024 版权所有 粤ICP备16019765号
广州京杭网络科技有限公司 版权所有