Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. from itertools import product
  2. a =[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19]
  3.  
  4. # [int(x) for x in input().split()][:2]
  5.  
  6. c= [0,1]
  7. #  [int(x) for x in input().split()][:2]
  8. arr = list(product(a,c))
  9. for i in arr:
  10.     print(i,end=' ')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement