Python String rjust() Method
Example
Return a 20 characters long, right justified version of the word "banana":
    txt = "banana"
x = txt.rjust(20)
print(x, "is my 
    favorite fruit.")
  Run example »
Note: In the result, there are actually 14 whitespaces to the left of the word banana.
Definition and Usage
The rjust() method will right align the 
string, using a specified character (space is default) as the fill character.
Syntax
  
    string.rjust(length, character)
  
Parameter Values
| Parameter | Description | 
|---|---|
| length | Required. The length of the returned string | 
| character | Optional. A character to fill the missing space (to the left of the string). Default is " " (space). | 
More Examples
Example
Using the letter "O" as the padding character:
    txt = "banana"
x = txt.rjust(20, "O")
print(x)
  Run example »

