pandas.Series.str.center — pandas 3.0.0.dev0+2102.g839747c3f6 documentation (original) (raw)
Series.str.center(width, fillchar=' ')[source]#
Pad left and right side of strings in the Series/Index.
Equivalent to str.center().
Parameters:
widthint
Minimum width of resulting string; additional characters will be filled with fillchar
.
fillcharstr
Additional character for filling, default is whitespace.
Returns:
Series/Index of objects.
A Series or Index where the strings are modified by str.center().
See also
Fills the left side of strings with an arbitrary character.
Fills the right side of strings with an arbitrary character.
Fills both sides of strings with an arbitrary character.
Pad strings in the Series/Index by prepending ‘0’ character.
Examples
For Series.str.center:
ser = pd.Series(['dog', 'bird', 'mouse']) ser.str.center(8, fillchar='.') 0 ..dog... 1 ..bird.. 2 .mouse.. dtype: object
For Series.str.ljust:
ser = pd.Series(['dog', 'bird', 'mouse']) ser.str.ljust(8, fillchar='.') 0 dog..... 1 bird.... 2 mouse... dtype: object
For Series.str.rjust:
ser = pd.Series(['dog', 'bird', 'mouse']) ser.str.rjust(8, fillchar='.') 0 .....dog 1 ....bird 2 ...mouse dtype: object