polars.Series.str.rjust#
- Series.str.rjust(length: int, fill_char: str = ' ') Series[source]#
Return the string right justified in a string of length
length.Deprecated since version 0.19.12: This method has been renamed to
pad_start().- Parameters:
- length
Justify right to this length.
- fill_char
Fill with this ASCII character.