pyspark.pandas.Series.str.center¶
-
str。
中心
( 寬度:int,fillchar:str=' ' )→pyspark.pandas.series.Series¶ -
填充左邊和右邊係列/索引的字符串和一個額外的字符。相當於
str.center ()
。- 參數
-
- 寬度 int
-
生成的字符串的最小寬度;將裝滿fillchar額外字符。
- fillchar str
-
額外的填充字符,默認是空白。
- 返回
-
- 一係列的對象
例子
> > >年代=ps。係列([“馴鹿”,“老虎”])> > >年代0馴鹿1隻老虎dtype:對象
> > >年代。str。中心(寬度=10,fillchar=“- - -”)0馴鹿。1——虎- - - - - -dtype:對象