毛头小子


私信TA

用户名:uq_10571446592

访问量:561

签 名:

救赎未来的自己!

等  级
排  名 28366
经  验 536
参赛次数 0
文章发表 8
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

解题思路:

注意事项:

参考代码:

def Delete(s,arg):

    try:

        index=s.index(arg)

        string1=s[0:index]

        string2=s[index+1:]

        s=string1+string2

        return s

    except:

        return '指定字符不存在'

def Insert(s,a1,a2):

    try:

        index=s.rindex(a1)

        string1=s[0:index]

        string2=s[index:]

        s=string1+a2+string2

        return s

    except:

        return '指定字符不存在'

def Replace(s,a1,a2):

    if not s.count(a1):

        return '指定字符不存在'

    else:

        while True:

            try:

                

                index=s.index(a1)

                string1=s[0:index]

                string2=s[index+1:]

                s=string1+a2+string2

            except:

                return s

        

while True:

    try:

        a=input().strip()

        b=input().strip().split()

        if b[0]=='D':

            ans=Delete(a,b[1])

        if b[0]=='I':

            ans=Insert(a,b[1],b[2])

        if b[0]=='R':

            ans=Replace(a,b[1],b[2])

        print(ans)

    except:

        break


 

0.0分

0 人评分

  评论区

  • «
  • »