sizeA = 2**28
M = [0]*sizeA
The above code creates an array but, each element is 4 bytes each.
How do create a large byte array with type 'B' (eight bits unsigned)? I would like it to be as large as possible. I need it for a sieve prime number program.