Obviously writing something like 0, 1 == 0, 1 is bad syntax, but I was surprised by the result: (0, False, 1). What is Python doing under the hood
0, 1 == 0, 1
(0, False, 1)