If I have one long list: myList = [0,2,1,0,2,1] that I split into two lists:
myList = [0,2,1,0,2,1]
a = [0,2,1] b = [0,2,1]
how can I compare these t
The expression a == b should do the job.
a == b