当前位置:Gxlcms > Python > PythonList交集,并集,差集的应用

PythonList交集,并集,差集的应用

时间:2021-07-01 10:21:17 帮助过:44人阅读

生成了两个List:

A = ['apple','apple','banana']
B = ['banana','apple','banana']

交集,并集,差集概念这里不说,python代码如下:

#! /usr/bin/env python
# coding:utf-8

listA = [1, 2, 3, 4, 5, 6]
listB = [4, 5, 6, 7]

# Intersection
inte = list(set(listA).intersection(set(listB)))
print "Intersection:", inte

# union
uni = list(set(listA).union(set(listB)))
print "Union:", uni

# Differences
diff = list(set(listA).difference(set(listB)))
print "Differences:", diff

if diff:
    print "wrong"
else:
    print "matched"

生成了两个List:

A = ['apple','apple','banana']
B = ['banana','apple','banana']

交集,并集,差集概念这里不说,python代码如下:

#! /usr/bin/env python
# coding:utf-8

listA = [1, 2, 3, 4, 5, 6]
listB = [4, 5, 6, 7]

# Intersection
inte = list(set(listA).intersection(set(listB)))
print "Intersection:", inte

# union
uni = list(set(listA).union(set(listB)))
print "Union:", uni

# Differences
diff = list(set(listA).difference(set(listB)))
print "Differences:", diff

if diff:
    print "wrong"
else:
    print "matched"

以上就是Python List交集,并集,差集的应用的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行