pandas.Series.str.center

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

Filling left and 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