在Python中,获取两个列表的交集可以通过以下几种方法:
1. 使用`set()`函数:
list1 = [1, 2, 3, 4, 5]
list2 = [4, 5, 6, 7, 8]
intersection = list(set(list1) & set(list2))
print(intersection) 输出:[4, 5]
2. 使用列表推导式:
list1 = [1, 2, 3, 4, 5]
list2 = [4, 5, 6, 7, 8]
intersection = [x for x in list1 if x in list2]
print(intersection) 输出:[4, 5]
3. 使用内置函数`filter()`:
list1 = [1, 2, 3, 4, 5]
list2 = [4, 5, 6, 7, 8]
intersection = list(filter(lambda x: x in list2, list1))
print(intersection) 输出:[4, 5]
4. 使用集合的`intersection()`方法:
list1 = [1, 2, 3, 4, 5]
list2 = [4, 5, 6, 7, 8]
intersection = list(set(list1).intersection(set(list2)))
print(intersection) 输出:[4, 5]
以上方法都可以用来计算两个列表的交集。选择哪种方法取决于你的具体需求和代码风格
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://sigusoft.com/bj/144639.html