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
look at this example:
r = [1,0,1,0,1,1,0,0,0,1] print(r==0,0,r,1,0) print(r==r,0,1,0,1,0)
then result:
False 0 [1, 0, 1, 0, 1, 1, 0, 0, 0, 1] 1 0 True 0 1 0 1 0
then comparison just does to the first number(0 and r) in the example.