字符串rjust() 方法返回給定最小寬度的右對齊字符串。
用法:
string.rjust(width[, fillchar])
這裏,fillchar
是可選參數。
參數:
rjust()
方法有兩個參數:
- width- 給定字符串的寬度。如果寬度小於或等於字符串的長度,則返回原始字符串。
- 填充字符(可選)- 字符填充寬度的剩餘空間
返回:
rjust()
方法返回給定最小值內的右對齊字符串 width
。
如果定義了fillchar
,它將用定義的字符填充剩餘空間。
示例 1:右對齊最小寬度的字符串
# example string
string = 'cat'
width = 5
# print right justified string
print(string.rjust(width))
輸出
cat
在這裏,定義的最小 width
是 5。因此,結果字符串的長度至少為 5。
現在,rjust()
將字符串 cat
向右對齊,在單詞左側留下兩個空格。
示例 2:右對齊字符串並填充剩餘空格
# example string
string = 'cat'
width = 5
fillchar = '*'
# print right justified string
print(string.rjust(width, fillchar))
輸出
**cat
在這裏,字符串 cat
向右對齊,其左側的剩餘兩個空格用填充字符 *
填充。
注意:如果要右對齊字符串,請使用String ljust.你也可以使用format()用於格式化字符串。
相關用法
- Python String rsplit()用法及代碼示例
- Python String rpartition()用法及代碼示例
- Python String replace()用法及代碼示例
- Python String rindex()用法及代碼示例
- Python String rstrip()用法及代碼示例
- Python String rfind()用法及代碼示例
- Python String Center()用法及代碼示例
- Python String decode()用法及代碼示例
- Python String join()用法及代碼示例
- Python String casefold()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String startswith()用法及代碼示例
- Python String splitlines()用法及代碼示例
- Python String upper()用法及代碼示例
- Python String isprintable()用法及代碼示例
- Python String translate()用法及代碼示例
- Python String title()用法及代碼示例
- Python String split()用法及代碼示例
- Python String format_map()用法及代碼示例
- Python String zfill()用法及代碼示例
注:本文由純淨天空篩選整理自 Python String rjust()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。