dask.dataframe.Series.str.center

dask.dataframe.Series.str.center

dataframe.Series.str.center(width: int, fillchar: str = ' ')

在 Series/Index 中的字符串的左右两侧填充。

此文档字符串是从 pandas.core.strings.accessor.StringMethods.center 复制的。

Dask 版本可能存在一些不一致性。

等同于 str.center()

参数
宽度整数

结果字符串的最小宽度;额外的字符将用 fillchar 填充。

填充字符str

填充的附加字符,默认为空白。

返回
对象的系列/索引。

示例

对于 Series.str.center:

>>> ser = pd.Series(['dog', 'bird', 'mouse'])  
>>> ser.str.center(8, fillchar='.')  
0   ..dog...
1   ..bird..
2   .mouse..
dtype: object

对于 Series.str.ljust:

>>> ser = pd.Series(['dog', 'bird', 'mouse'])  
>>> ser.str.ljust(8, fillchar='.')  
0   dog.....
1   bird....
2   mouse...
dtype: object

对于 Series.str.rjust:

>>> ser = pd.Series(['dog', 'bird', 'mouse'])  
>>> ser.str.rjust(8, fillchar='.')  
0   .....dog
1   ....bird
2   ...mouse
dtype: object