In Python (I checked only with Python 3.6 but I believe it should hold for many of the previous versions as well):
(0, 0) == 0, 0 # results in a two elemen
In the first one Python is making a tuple of two things:
(0, 0) == 0
False
0
In the second one it's the other way around.