當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Python pandas.Series.str.slice用法及代碼示例


用法:

Series.str.slice(start=None, stop=None, step=None)

從 Series 或 Index 中的每個元素分割子字符串。

參數

start整數,可選

切片操作的起始位置。

stop整數,可選

切片操作的停止位置。

step整數,可選

切片操作的步長。

返回

對象的係列或索引

來自原始字符串對象的切片子字符串的係列或索引。

例子

>>> s = pd.Series(["koala", "dog", "chameleon"])
>>> s
0        koala
1          dog
2    chameleon
dtype:object
>>> s.str.slice(start=1)
0        oala
1          og
2    hameleon
dtype:object
>>> s.str.slice(start=-1)
0           a
1           g
2           n
dtype:object
>>> s.str.slice(stop=2)
0    ko
1    do
2    ch
dtype:object
>>> s.str.slice(step=2)
0      kaa
1       dg
2    caeen
dtype:object
>>> s.str.slice(start=0, stop=5, step=3)
0    kl
1     d
2    cm
dtype:object

等效行為:

>>> s.str[0:5:3]
0    kl
1     d
2    cm
dtype:object

相關用法


注:本文由純淨天空篩選整理自pandas.pydata.org大神的英文原創作品 pandas.Series.str.slice。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。