to visually understand my question:
go from this..
list1 = [3, 4, 78]
list2 = [24, 35, 2, 9, 8]
to this..
list3 = [[3, 24], [3, 35], [3,2], [3, 9] [3, 8], [4, 24], [4, 35], [4,2], [4, 9] [4, 8]]
I tried different variations of this to no avail
list3 = [list(pair) for pair in zip(list1, list2)]