What's the best way to create a pandas dataframe to get every possibility with some list of numbers?
I want to test every configuration of an algorithm.
Lists are like
a = [0,1,2,3,4,5,6,7]
b = [0.0001, 0.0002, 0.0003]
c = ...
'''
And i need to get a dataframe which get in each row
row 1 = a[0],b[0],c[0]
row 2 = a[0],b[1],c[0]
row 3 = a[0],b[0],c[1]
row 4 = a[0],b[2],c[0]
row 5 = a[0],b[2],c[1]
Of course i get like 7 lists and each lists have more than 3 numbers.
Thanks for the help guys Have a nice day.