string.rjust(width, fillchar)
string.ljust(width,fillchar)
width: The total width of the resulting string.
fillchar (optional): The character to pad the string with (default is a space).
These methods are particularly useful for formatting text output in a readable manner, such as creating tables or aligning columns of text.