用法:
Series.str.removesuffix(suffix)
从对象系列中删除后缀。如果后缀不存在,将返回原始字符串。
- suffix:str
删除字符串的后缀。
- 系列/索引:对象
删除了给定后缀的系列或索引。
参数:
返回:
例子:
>>> 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
相关用法
- Python pandas.Series.str.removeprefix用法及代码示例
- Python pandas.Series.str.replace用法及代码示例
- Python pandas.Series.str.repeat用法及代码示例
- Python pandas.Series.str.rpartition用法及代码示例
- Python pandas.Series.str.rsplit用法及代码示例
- Python pandas.Series.str.rstrip用法及代码示例
- Python pandas.Series.str.isdecimal用法及代码示例
- Python pandas.Series.str.get用法及代码示例
- 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.startswith用法及代码示例
- Python pandas.Series.str.count用法及代码示例
- Python pandas.Series.str.strip用法及代码示例
- Python pandas.Series.str.islower用法及代码示例
注:本文由纯净天空筛选整理自pandas.pydata.org大神的英文原创作品 pandas.Series.str.removesuffix。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。