I want to do something like
for a in [0..1]:
for b in [0..1]:
for c in [0..1]:
do something
But, I might have 15 different variables. Is there a simpler way like
for a, b, c in [0..1]:
do something
Thanks for any help