polars.internals.series.StringNameSpace.rjust¶
- StringNameSpace.rjust(width: int, fillchar: str = ' ') polars.internals.series.Series ¶
Return the string right justified in a string of length width. Padding is done using the specified fillchar, The original string is returned if width is less than or equal to len(s).
- Parameters
- width
justify right to this length
- fillchar
fill with this ASCII character