>>> x = {'a': 1, 'b': 2} | |
>>> y = {'b': 2, 'a': 1} | |
>>> x == y | |
True |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
>>> x = {'a': 1, 'b': 2} | |
>>> y = {'b': 2, 'a': 1} | |
>>> x == y | |
True |