Contact: aviboots(AT)netvision.net.il
41,255 questions
53,764 answers
573 users
import itertools for i, j in itertools.product(range(2), range(4)): print(i, j) ''' run: 0 0 0 1 0 2 0 3 1 0 1 1 1 2 1 3 '''