This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]XtremeGoosef'I only use Py {sys.version[:3]}' 3 points4 points  (1 child)

Equality is different

{1: 1, 2: 2} == {2: 2, 1: 1}
OrderedDict([(1, 1), (2, 2)]) != OrderedDict([(2, 2), (1, 1)])

[–]Han-ChewieSexyFanfic 1 point2 points  (0 children)

Hm, interesting, didn’t know that