Python示例,用于查找2个或更多词典之间的常见项目,即字典相交项目。
1.使用“&”运算符的字典交集
最简单的方法是查找键,值或项的交集,即 & 在两个字典之间使用运算符。
example.py
a = { 'x' : 1, 'y' : 2, 'z' : 3 }
b = { 'u' : 1, 'v' : 2, 'w' : 3, 'x' : 1, 'y': 2 }
set( a.keys() ) & set( b.keys() ) # Output set(['y', 'x'])
set( a.items() ) & set( b.items() ) # Output set([('y', 2), ('x', 1)])
2.设置交集()方法
Set intersection()方法返回一个集合,其中包含集合a和集合b中都存在的项。
example.py
a = { 'x' : 1, 'y' : 2, 'z' : 3 }
b = { 'u' : 1, 'v' : 2, 'w' : 3, 'x' : 1, 'y': 2 }
setA = set( a )
setB = set( b )
setA.intersection( setB )
# Output set(['y', 'x'])
for item in setA.intersection(setB):
print item
#x
#y
祝:学习愉快、工作顺利!
关注公众号「码农园区」,获取程序员大礼包