2 つの List
が生成されました: 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']
#! /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"
リストが生成されました
:rrreee
交差集合、和集合、差集合の概念はここでは説明しません。Python コードは次のとおりです:
以上がPython リストの交差、和集合、および差分セットの適用の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。