题解 | #删除好友#
删除好友
https://www.nowcoder.com/practice/656f7d09fe9c4d78919e7cc2b4a19c81
a=input().split() b=input().split() #a.remove(b) #print(a) a=[c for c in a if c not in b] print(a)
删除好友
https://www.nowcoder.com/practice/656f7d09fe9c4d78919e7cc2b4a19c81
a=input().split() b=input().split() #a.remove(b) #print(a) a=[c for c in a if c not in b] print(a)
相关推荐