두 개의 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
아아앙
위 내용은 Python List 교집합, 합집합, 차이 집합 적용의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!