I want to merge two arrays in python with all possible combinations
ex a= [1, 2, 3] and b= [4, 5, 6] should give the output
c= [(1,4),(1,5),(1,6)
(2,4),(2,5),(2,6)
(3,4),(3,5),(3,6)]
in this particular order(i.e. of order 3x3). The order is particularly important here