用法:
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
相关用法
- Python pandas.Series.str.slice_replace用法及代码示例
- Python pandas.Series.str.startswith用法及代码示例
- Python pandas.Series.str.strip用法及代码示例
- Python pandas.Series.str.swapcase用法及代码示例
- Python pandas.Series.str.split用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- Python pandas.Series.str.replace用法及代码示例
- Python pandas.Series.str.endswith用法及代码示例
- Python pandas.Series.str.isspace用法及代码示例
- Python pandas.Series.str.isdigit用法及代码示例
- Python pandas.Series.str.wrap用法及代码示例
- Python pandas.Series.str.isalnum用法及代码示例
- Python pandas.Series.str.zfill用法及代码示例
- Python pandas.Series.str.partition用法及代码示例
- Python pandas.Series.str.isnumeric用法及代码示例
- Python pandas.Series.str.count用法及代码示例
- Python pandas.Series.str.rpartition用法及代码示例
- Python pandas.Series.str.removesuffix用法及代码示例
- Python pandas.Series.str.rsplit用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.str.slice。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。