程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
您现在的位置: 程式師世界 >> 編程語言 >  >> 更多編程語言 >> Python

Python 字符串對齊方法(ljust()、rjust()和center())

編輯:Python

文章目錄

  • Python 字符串對齊方法
    • Python ljust()方法
    • Python rjust()方法
    • Python center()方法


Python 字符串對齊方法

Python str 提供了 3 種可用來進行文本對齊的方法,分別是 ljust()、rjust() 和 center() 方法,本節就來一一介紹它們的用法。

Python ljust()方法

ljust() 方法的功能是向指定字符串的右側填充指定字符,從而達到左對齊文本的目的。

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

S.ljust(width[, fillchar])

其中各個參數的含義如下:

  • S:表示要進行填充的字符串;
  • width:表示包括 S 本身長度在內,字符串要占的總長度;
  • fillchar:作為可選參數,用來指定填充字符串時所用的字符,默認情況使用空格。

【例 1】

S = 'https://editor.csdn.net/md?not_checkout=1&articleId=125648923'
addr = 'https://editor.csdn.net/'
print(S.ljust(35))
print(addr.ljust(35))

輸出結果為:

https://editor.csdn.net/md?not_checkout=1&articleId=125648923
https://editor.csdn.net/

注意,該輸出結果中除了明顯可見的網址字符串外,其後還有空格字符存在,每行一共 35 個字符長度。

【例 2】

S = 'https://editor.csdn.net/md?not_checkout=1&articleId=125648923'
addr = 'https://editor.csdn.net/'
print(S.ljust(35,'-'))
print(addr.ljust(35,'-'))

輸出結果為:

https://editor.csdn.net/md?not_checkout=1&articleId=125648923-----
https://editor.csdn.net/t-------------

此程序和例 1 的唯一區別是,填充字符從空格改為‘-’。

Python rjust()方法

rjust() 和 ljust() 方法類似,唯一的不同在於,rjust() 方法是向字符串的左側填充指定字符,從而達到右對齊文本的目的。

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

S.rjust(width[, fillchar])

其中各個參數的含義和 ljust() 完全相同,所以這裡不再重復描述。

【例 3】

S = 'https://editor.csdn.net/md?not_checkout=1&articleId=125648923'
addr = 'https://editor.csdn.net/'
print(S.rjust(35))
print(addr.rjust(35))

輸出結果為:

 https://editor.csdn.net/md?not_checkout=1&articleId=125648923
https://editor.csdn.net/

可以看到,每行字符串都占用 35 個字節的位置,實現了整體的右對齊效果。

【例 4】

S = 'https://editor.csdn.net/md?not_checkout=1&articleId=125648923'
addr = 'https://editor.csdn.net/'
print(S.rjust(35,'-'))
print(addr.rjust(35,'-'))

輸出結果為:

-----https://editor.csdn.net/md?not_checkout=1&articleId=125648923
-------------https://editor.csdn.net/

Python center()方法

center() 字符串方法與 ljust() 和 rjust() 的用法類似,但它讓文本居中,而不是左對齊或右對齊。

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

S.center(width[, fillchar])

其中各個參數的含義和 ljust()、rjust() 方法相同。

【例 5】

S = 'https://editor.csdn.net/md?not_checkout=1&articleId=125648923'
addr = 'https://editor.csdn.net/'
print(S.center(35,))
print(addr.center(35,))

輸出結果為:

 https://editor.csdn.net/md?not_checkout=1&articleId=125648923
https://editor.csdn.net/

【例 6】

S = 'https://editor.csdn.net/md?not_checkout=1&articleId=125648923'
addr = 'https://editor.csdn.net/'
print(S.center(35,'-'))
print(addr.center(35,'-'))

輸出結果為:

—https://editor.csdn.net/md?not_checkout=1&articleId=125648923–
-------https://editor.csdn.net/------


  1. 上一篇文章:
  2. 下一篇文章:
Copyright © 程式師世界 All Rights Reserved