Python center()字串居中對齊方法詳解

2020-07-16 10:05:05
center() 字串方法與 ljust() 和 rjust() 的用法類似,唯一的不同在於,該方法的功能是讓字串居中,而不是左對齊或右對齊。

center() 方法的基本格式如下:

S.center(width[, fillchar])

其中各個引數的含義如下:
  • S:表示要進行填充的字串;
  • width:表示包括 S 本身長度在內,字串要佔的總長度;
  • fillchar:作為可選引數,用來指定填充字串時所用的字元,預設情況使用空格。

【例 1】
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    

【例 2】
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------