鱼C论坛

 找回密码
 立即注册
查看: 1208|回复: 3

[已解决]可以帮我看看这段代码错在哪儿吗

[复制链接]
发表于 2020-8-18 17:28:14 | 显示全部楼层 |阅读模式

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

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

x
class Nstr:
    def __init__(self,str1='',str2=''):
        self.str1=str1
        self.str2=str2
    def edg(self):
        for each in self.str2:
            for i in range(len(self.str1)):
                if self.str1[i]==each:
                    count=self.str1.pop(i)
        return count
a=Nstr('diwuji','wi')
print(a.edg())
最佳答案
2020-8-18 18:09:05



字符串不能使用 pop() ,你的代码想达到什么目的?

是统计子字符串吗?还是什么?

看看这个代码是不是你想要的?
class Nstr:
    def __init__(self,str1='',str2=''):
        self.str1=str1
        self.str2=str2
    def edg(self):
        for each in self.str2:
            for i in self.str1:
                if each == i:
                    self.str1 = self.str1.replace(each,'')
        return self.str1
a=Nstr('diwuji','wi')
print(a.edg())


想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-8-18 18:09:05 | 显示全部楼层    本楼为最佳答案   



字符串不能使用 pop() ,你的代码想达到什么目的?

是统计子字符串吗?还是什么?

看看这个代码是不是你想要的?
class Nstr:
    def __init__(self,str1='',str2=''):
        self.str1=str1
        self.str2=str2
    def edg(self):
        for each in self.str2:
            for i in self.str1:
                if each == i:
                    self.str1 = self.str1.replace(each,'')
        return self.str1
a=Nstr('diwuji','wi')
print(a.edg())


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

使用道具 举报

发表于 2020-8-18 18:34:22 | 显示全部楼层
Twilight6 发表于 2020-8-18 18:09
字符串不能使用 pop() ,你的代码想达到什么目的?

是统计子字符串吗?还是什么?

我也不知道他想干什么,楼主,回复一下您要干什么
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-8-18 19:26:37 | 显示全部楼层
秒懂 谢谢哥哥
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

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

本版积分规则

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

GMT+8, 2025-1-19 11:11

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

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