Python rjust() 方法右對齊字符串並用fillchars 填充剩餘的空格。此方法返回一個正確對齊並填充了填充字符的新字符串。
簽名
rjust(width[, fillchar])
參數
- 寬度:給定字符串的寬度。
- fillchar: 填充字符串中剩餘空間的字符。它是可選的。
返回
它返回一個右對齊的字符串。
讓我們看一些 rjust() 方法的例子來理解它的函數。
Python 字符串 rjust() 方法示例 1
# Python rjust() method example
# Variable declaration
str = 'Javatpoint'
# Calling function
str = str.rjust(20)
# Displaying result
print(str)
輸出:
j | a | v | a | p | o | i | n | t |
Python 字符串 rjust() 方法示例 2
# Python rjust() method example
# Variable declaration
str = 'Javatpoint'
# Calling function
str = str.rjust(15,"$")
# Displaying result
print(str)
輸出:
$ | $ | $ | $ | $ | j | a | v | a | p | o | i | n | t |
相關用法
- Python String rsplit()用法及代碼示例
- Python String rindex()用法及代碼示例
- Python String rstrip()用法及代碼示例
- Python String rpartition()用法及代碼示例
- Python String replace()用法及代碼示例
- Python String rfind()用法及代碼示例
- Python String Center()用法及代碼示例
- Python String isnumeric()用法及代碼示例
- Python String join()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String startswith()用法及代碼示例
- Python String upper()用法及代碼示例
- Python String splitlines()用法及代碼示例
- Python String isprintable()用法及代碼示例
- Python String translate()用法及代碼示例
- Python String split()用法及代碼示例
- Python String format_map()用法及代碼示例
- Python String zfill()用法及代碼示例
- Python String isspace()用法及代碼示例
- Python String Encode()用法及代碼示例
注:本文由純淨天空篩選整理自 Python String rjust() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。