What does the == operator actually do on a Python dictionary?
From the question above , == operator will compare two dictionaries keys and their corresponding values. But I see in many places in code where the keys and values are iterated to check equality of dictionaries.
I wanted to check only the equality condition on two dictionaries.