Hi,
I want to take elements of an array of arrays like [ [list1] , [list2] , [list3] ] and feed them as input into IterTools.product(), so that I obtain IterTools.product( [list1] , [list2] , [list3] ) which can be executed. Any idea how I transfer the array elements as input into the function?
Thanks!