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