I have two lists of integers. I want to make all possible combinations of elements in list-1 with elements with list-2. For Example:
List-1 List-2
1 5
2 6
I need another list of all possible combinations like:
element-1 element-2
1 5
1 6
2 5
2 6
How to do that in python?