L1-011 A-B python

python实现

a=str(input())
b=str(input())

for i in b:
    while i in a:
        loc=a.index(i)
        a=a[:loc]+a[loc+1:]
print(a)

 

posted @ 2024-07-03 18:08  豆豆是只乖狗狗  阅读(1)  评论(0编辑  收藏  举报