filbert icon indicating copy to clipboard operation
filbert copied to clipboard

Comparison operations for complex types

Open differentmatt opened this issue 11 years ago • 0 comments

https://docs.python.org/3.4/reference/expressions.html#not-in

List, tuple, and dictionary equality would be great first steps.

# These are True in Python, false in JavaScript
[1, 2] == [1, 2] 
{'a': 10, 'b':'hi'} == {'b':'hi', 'a':10}

differentmatt avatar Jul 23 '14 21:07 differentmatt