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 的唯一區別是,填充字元從空格改為‘-’。