这就是目标:编写一个函数来获取 2 个列表 L1 和 L2,并构建并返回由列表 L1 和列表 L2 中的元素组成的第三个列表 L3,即排除仅在 L1 中或仅在 L2 中的任何值。
问题:我陷入了循环(只会采用 alist 和 blist 共享的值)。
我的代码:
alist=input("Enter words separated by space: " ).split(" ")
blist=input("Enter words separated by space: " ).split(" ")
clist=[" "]
for i in alist,blist:
if alist(i)==blist(i):
clist=alist(i)+blist(i)
return clist