dask.dataframe.Series.str.ljust
dask.dataframe.Series.str.ljust¶
- dataframe.Series.str.ljust(width: int, fillchar: str = ' ')¶
在 Series/Index 中对字符串的右侧进行填充。
此文档字符串是从 pandas.core.strings.accessor.StringMethods.ljust 复制而来的。
Dask 版本可能存在一些不一致性。
等同于
str.ljust()
。- 参数
- 宽度整数
结果字符串的最小宽度;额外的字符将用
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