Python 程序以查找两个列表的交集
交叉操作意味着,我们必须从列表 1 和列表 2 中接收所有常见元素,并将所有元素存储在另一个第三个列表中。
List1::[1,2,3] List2::[2,3,6] List3::[2,3]
算法
Step 1: input lists. Step 2: first traverse all the elements in the first list and check with the elements in the second list. Step 3: if the elements are matched then store in third list.
示例代码
#Intersection of two lists
def intertwolist(A, B):
C = [i for i in A if i in B]
return C
# Driver Code
A=list()
B=list()
n=int(input("Enter the size of the List ::"))
print("Enter the Element of first list::")
for i in range(int(n)):
k=int(input(""))
A.append(k)
print("Enter the Element of second list::")
for i in range(int(n)):
k=int(input(""))
B.append(k)
print("THE FINAL LIST IS ::>",intertwolist(A, B))
输出
Enter the size of the List ::5
Enter the Element of first list::
12
23
45
67
11
Enter the Element of second list::
23
45
88
11
22
THE FINAL LIST IS ::> [23, 45, 11]
- 原文作者:知识铺
- 原文链接:https://geek.zshipu.com/post/python/Python-%E7%A8%8B%E5%BA%8F%E4%BB%A5%E6%9F%A5%E6%89%BE%E4%B8%A4%E4%B8%AA%E5%88%97%E8%A1%A8%E7%9A%84%E4%BA%A4%E9%9B%86/
- 版权声明:本作品采用知识共享署名-非商业性使用-禁止演绎 4.0 国际许可协议进行许可,非商业转载请注明出处(作者,原文链接),商业转载请联系作者获得授权。
- 免责声明:本页面内容均来源于站内编辑发布,部分信息来源互联网,并不意味着本站赞同其观点或者证实其内容的真实性,如涉及版权等问题,请立即联系客服进行更改或删除,保证您的合法权益。转载请注明来源,欢迎对文章中的引用来源进行考证,欢迎指出任何有错误或不够清晰的表达。也可以邮件至 sblig@126.com