當前位置:成語大全網 - 新華字典 - python中如何判斷壹個dict是另壹個dict的子集?

python中如何判斷壹個dict是另壹個dict的子集?

is_sub_dict(d, sub_d):

for key, value in sub_d.items():

if key in d and d.get(key) == value:

pass

else:

return False

else:

return True