filbert
filbert copied to clipboard
Comparison operations for complex types
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}