pandas.Series.str.pad

Series.str.pad(width, side='left', fillchar=' ')

Pad strings with an additional character

Parameters:

arr : list or array-like

width : int

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

side : {‘left’, ‘right’, ‘both’}, default ‘left’

fillchar : str

Additional character for filling, default is whitespace

Returns:

padded : array