pandas.Series.str.removeprefix # 系列.str。删除前缀(前缀) [来源] # 从对象系列中删除前缀。 如果前缀不存在,则返回原始字符串。 参数: 前缀字符串删除字符串的前缀。 返回: 系列/索引:对象已删除具有给定前缀的系列或索引。 也可以看看 Series.str.removesuffix从对象系列中删除后缀。 例子 >>> 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