l = [True, True , False]
Without using itertools
module.
How do yo create permutations of l in a new list
newlist = [[True,True,False],[True,True,True], [False,False,True],[False,False,False]....]
essentially this is what im trying to do:
allorderings = itertools.product ([False, True], repeat = n)