Work is Worship 13 Comparison in List Sequences: We can compare two lists using standard comparison operators of Python i.e. >, <, >=, <=, ==, != etc. Python internally compares individual elements of lists. >>> [ 1 , 2, 8, 9] < [ 9 , 1] True >>> [1, 2, 8, 9 ] < [1, 2, 8, 1 ] False >>> [1, 2, 8, 9 ] > [1, 2, 8, 4 , 5] True Find the output? >>> [1, 2, 8, 9] > [1, 2, 8] True >>> [' anis ']>[' ajit ','raj'] True >>> li1=[1,2,3,4] >>> li2=[1,2] >>> li1==li2 False