1. 程式人生 > >python 字典 鍵值 交集

python 字典 鍵值 交集

def dictionarIntersetction(dict1,dict2):

    dict3 = dict.fromkeys([x for x in dict1 if x in dict2 and dict1[x]==dict2[x]])

    return dict3