rjust(width[, fillchar])
Return the string right justified in a string of length width.
Padding is done using the specified fillchar (default is a space).
The original string is returned if width is less than
len(s). Changed in version 2.4: Support for the fillchar
argument.