I have three arrays/lists:
list1 = range(1,10)
list2 = range(1,10)
list3 = range(1,10)
I want to create an list of tuples containing an assortment of each of the values in my three lists. Essentially I want an output such as:
combo = [(1,1,1), (1,1,2), (1,1,3) ... (1,4,2), (1,4,3) ... (4,5,4), (4,5,5) ... (10,10,9), (10,10,10)]
It seems like such as simple problem, but I don't know where to start.