pandas.Series.str.ljust

Series.str.ljust(width, fillchar=' ')

Filling right side of strings with an additional character

Parameters:

width : int

Minimum width of resulting string; additional characters will be filled with fillchar

fillchar : str

Additional character for filling, default is whitespace

Returns:

filled : array