I have two lists which are guaranteed to be the same length. I want to compare the corresponding values in the list (except the first item) and print out the ones which dont mat
edit: oops, didn't see the "ignore first item" part
from itertools import islice,izip for a,b in islice(izip(list1,list2),1,None): if a != b: print a, b