Kombinasi Numpy dari 5 bit

import itertools
lst = list(itertools.product([0, 1], repeat=3))
Smoggy Sandpiper