list1 = [2 3 4]
list2 = [0 1 2 3]
desired output / or similar
(2,0) (2,1) (2,2) (2,3) (3,0) (3,1) (3,2) (3,3) (4,0)
i.e. for every val in list1, iterate through list2 before moving to next val in list1
I might be here for the next day trying to do it :/ ... tyty