#!/usr/local/bin/python3 t = 1,2,3,4,5,6,7,8,9 for x in range(10000): for i, j in zip(t[1::2], t[2::2]): pass