當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python String rjust()用法及代碼示例


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 rjust() Method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。