Steven D'Aprano <steve at REMOVEME.cybersource.com.au> writes: > for i in range(1, len(alist)): > x = alist[i] a2 = iter(alist) a2.next() # throw away first element for x in a2: ...