I\'m creating a list with itertools from a list of ranges, so far I have this:
start_list = [xrange(0,201,1),xrange(0,201,2),xrange(0,201,5),xrange(0,201,10),xra
Better to just use a list comprehension
new_list = [item for item in itertools.product(*start_list) if sum(item) == 200]