Hi,
Referring to tuple direct comparison examples in the session, could you please help me out to understand how internally python compares the tuples
(0,1,2) < (5,1,2) - True
(here 0 < 5 is True, 1 < 1 is False, 2 < 2 is False, but why result is True
Similarly in the below case as well
(0,1,2000000) < (0,3,4) - True
Thanks
Raghav