当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python pandas.Series.str.removeprefix用法及代码示例


用法:

Series.str.removeprefix(prefix)

从对象系列中删除前缀。如果前缀不存在,将返回原始字符串。

参数

prefixstr

删除字符串的前缀。

返回

系列/索引:对象

删除了给定前缀的系列或索引。

例子

>>> s = pd.Series(["str_foo", "str_bar", "no_prefix"])
>>> s
0    str_foo
1    str_bar
2    no_prefix
dtype:object
>>> s.str.removeprefix("str_")
0    foo
1    bar
2    no_prefix
dtype:object
>>> s = pd.Series(["foo_str", "bar_str", "no_suffix"])
>>> s
0    foo_str
1    bar_str
2    no_suffix
dtype:object
>>> s.str.removesuffix("_str")
0    foo
1    bar
2    no_suffix
dtype:object

相关用法


注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.str.removeprefix。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。