MM <[EMAIL PROTECTED]> writes: > What is the best structure/way to create an array of bits (actually > true/false flags) of an arbitrary length ranging from about 20 upto > about 500. Speed of access more of an issue than compactness.
Use a normal list: [False, False, True, False, True, ... ] . -- http://mail.python.org/mailman/listinfo/python-list