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