鱼C论坛

 找回密码
 立即注册
查看: 5412|回复: 4

[已解决]求助,字符串removeprefix()和removesuffix()怎么使用

[复制链接]
发表于 2021-3-5 13:33:22 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 挑灯. 于 2021-3-5 13:34 编辑

我在论坛中找到如图的介绍,但是我输入这个方法却会报错,请问这个用法该如何使用?




Python 3.7.4 (tags/v3.7.4:e09359112e, Jul  8 2019, 20:34:20) [MSC v.1916 64 bit (AMD64)] on win32
Type "help", "copyright", "credits" or "license()" for more information.
>>>
=================== RESTART: C:\Users\13217\Desktop\测试.py ===================
>>> str1='aassdd'
>>> str1.removeprefix('aa')
Traceback (most recent call last):
  File "<pyshell#1>", line 1, in <module>
    str1.removeprefix('aa')
AttributeError: 'str' object has no attribute 'removeprefix'


>>> str1.removeprefix('dd')
Traceback (most recent call last):
  File "<pyshell#2>", line 1, in <module>
    str1.removeprefix('dd')
AttributeError: 'str' object has no attribute 'removeprefix'


>>> 'aassdd'.removeprefix('aa')
Traceback (most recent call last):
  File "<pyshell#3>", line 1, in <module>
    'aassdd'.removeprefix('aa')
AttributeError: 'str' object has no attribute 'removeprefix'


>>> 'aassdd'.removeprefix('dd')
Traceback (most recent call last):
  File "<pyshell#4>", line 1, in <module>
    'aassdd'.removeprefix('dd')
AttributeError: 'str' object has no attribute 'removeprefix'
最佳答案
2021-3-5 14:59:19
本帖最后由 hrp 于 2021-3-5 15:06 编辑
挑灯. 发表于 2021-3-5 13:35
所以只能升级版本才能使用吗


对。不过用不了也无所谓了,自己写功能一样的函数也是十分简单的。
def removeprefix(string, prefix):
    if not (isinstance(string, str) and isinstance(prefix, str)):
        raise TypeError('Param value type error')
    if string.startswith(prefix):
        return string[len(prefix):]
    return string

def removesuffix(string, suffix):
    if not (isinstance(string, str) and isinstance(suffix, str)):
        raise TypeError('Param value type error')
    if string.endswith(suffix):
        return string[:-len(suffix)]
    return string

# 测试
s = 'aadjjfkkdiio'
print(removeprefix(s, 'aad'))
print(removesuffix(s, 'iio'))
1614922071(1).png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2021-3-5 13:35:09 From FishC Mobile | 显示全部楼层
这是py3.9才有的字符串方法
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 1 反对 0

使用道具 举报

 楼主| 发表于 2021-3-5 13:35:49 | 显示全部楼层
hrp 发表于 2021-3-5 13:35
这是py3.9才有的字符串方法

所以只能升级版本才能使用吗
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2021-3-5 14:59:19 From FishC Mobile | 显示全部楼层    本楼为最佳答案   
本帖最后由 hrp 于 2021-3-5 15:06 编辑
挑灯. 发表于 2021-3-5 13:35
所以只能升级版本才能使用吗


对。不过用不了也无所谓了,自己写功能一样的函数也是十分简单的。
def removeprefix(string, prefix):
    if not (isinstance(string, str) and isinstance(prefix, str)):
        raise TypeError('Param value type error')
    if string.startswith(prefix):
        return string[len(prefix):]
    return string

def removesuffix(string, suffix):
    if not (isinstance(string, str) and isinstance(suffix, str)):
        raise TypeError('Param value type error')
    if string.endswith(suffix):
        return string[:-len(suffix)]
    return string

# 测试
s = 'aadjjfkkdiio'
print(removeprefix(s, 'aad'))
print(removesuffix(s, 'iio'))
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2021-3-5 19:21:30 | 显示全部楼层
hrp 发表于 2021-3-5 14:59
对。不过用不了也无所谓了,自己写功能一样的函数也是十分简单的。

好吧 谢谢大佬
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-16 08:16

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表