When I try to compare two tuples in the below way, I get a different output each time. Why is that?
>>> print((23,12,1234)<=(19,9,2468))
False
>>> print((1234,12,23)<=(2468,9,19))
True
When I try to compare two tuples in the below way, I get a different output each time. Why is that?
>>> print((23,12,1234)<=(19,9,2468))
False
>>> print((1234,12,23)<=(2468,9,19))
True