码迷,mamicode.com
首页 > 其他好文 > 详细

给定两个列表,怎么找出他们相同的元素和不同的元素?

时间:2019-07-16 08:35:10      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:bsp   tin   相同   class   print   ati   int   set   key   

 

list1 = [1,2,3]
list2 = [3,4,5]
set1 = set(list1)
set2 = set(list2)
print(set1 & set2)
print(set1 ^ set2)

给定两个列表,怎么找出他们相同的元素和不同的元素?

标签:bsp   tin   相同   class   print   ati   int   set   key   

原文地址:https://www.cnblogs.com/sea-stream/p/11192556.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!