Right-aligns the characters in this string, padding with spaces on the left for a specified total length.
- Parameters
-
total_width | The number of characters in the resulting string, equal to the number of original characters plus any additional padding characters. |
- Returns
- A new string that is equivalent to the specified string, but right-aligned and padded on the left with as many spaces as needed to create a length of total_width. Or, if total_width is less than the length of the specified string, a new string object that is identical to the specified string.