This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import re | |
def equal_dicts(d1, d2, ignore_keys=None): | |
''' Dictionary Comparison | |
Takes 2 lists and does a comparison, excluding the keys from ignore_keys | |
Arguments: | |
d1 {dict} -- First Dict |
NewerOlder