pyspark.pandas.Series.str.get

str。 得到 ( :int )→pyspark.pandas.series.Series

從每個字符串或字符串列表中提取元素/係列的元組在指定的位置。

參數
int

元素提取的位置。

返回
一係列的對象

例子

> > >s1=ps係列([“字符串”,“123”])> > >s10的字符串1 123dtype:對象
> > >s1str得到(1)0 t1 2dtype:對象
> > >s1str得到(- - - - - -1)0 g1 3dtype:對象
> > >s2=ps係列([[“一個”,“b”,“c”),(“x”,“y”]])> > >s20 (a, b, c)1 (x, y)dtype:對象
> > >s2str得到(0)0一個1 xdtype:對象
> > >s2str得到(2)0 c1沒有一個dtype:對象