Can you guess result of this expression? >> (1,) == 1, #Python
2
1
2
0
0
or we can look at it this way >> 2==2 , 3 (True, 3)
`==` comes before `,` : >> (1,) == 1 False # tuple not eq. to int And the final answer is (False,) # prev. expression and comma