In an assignment I am currently working on we need to work with bit vectors, but I am very unsure of how to do this in Python. They should be able to be from 4 bits to 20 bits. I have never worked with bit vector before, but I guess that one would one create arrays of unsigned bytes that you manipulated using the usual AND/OR/XOR operations.

The important restriction here is: I cannot rely on any libraries other than those supplied with standard Python.

I think I know how I would do this in C using arrays of 8 bit unsigned bytes: e.g. to turn the 18th bit of a zeroed array into a one, I would do something like my_bit_array[3] &= 1<<2

But since Python is dynamically typed and does not have a built-in array type, how would I go about doing this in a pythonic way?

And is it possible (how?) to express a bit vector of size 20? I am thinking of perhaps making a 24 bit / 3 byte vector and ignoring the 4 bits.

link|improve this question

78% accept rate
What is the issue with relying on external libraries? – ezod Jan 27 '10 at 15:58
1  
@ezod: Probably because this is homework. – S.Lott Jan 27 '10 at 16:19
@S.Lott: yes, this is in relation to that, but this part has very little to do with that. as you see, I could have done this in C, but I would like to know how to do it in Python, using the built-ins of the language. That is a general question of relevance to others. – oligofren Jan 27 '10 at 16:26
1  
@oligofren: In that case, suggestions of external libraries would seem to be just as useful to you, assuming they are free -- you can look at the source and see how they've done it (using the built-ins of the language) for your academic interest. – ezod Jan 27 '10 at 16:53
feedback

4 Answers

up vote 2 down vote accepted

The library BitVector is a pure-Python library for this purpose, and should suit the needs you specified.

link|improve this answer
1  
Good library. Didn't use it, but learned a lot from reading the code. Turns out that in the nitty-gritty details the author of BitVector is using an array of (8 bit) bytes, just like I was pondering. – oligofren Feb 9 '10 at 14:26
feedback

The bitarray module does this efficiently with booleans.

link|improve this answer
feedback

It has lists, which you can populate with bools:

[False] * 20
link|improve this answer
Would this occupy 20 bytes or 20 bits of memory? I need to use lots of these – oligofren Jan 27 '10 at 15:03
1  
It would occupy 20+1 pointers. True and False are singletons. – Ignacio Vazquez-Abrams Jan 27 '10 at 15:05
Thanks for the input! I guess I will have to go with the structs module in that case. – oligofren Jan 27 '10 at 15:19
feedback

Use struct module.

link|improve this answer
Could you give me an example of creating a 3 byte array and setting a bit? I do not know the basic binary operators in Python. – oligofren Jan 27 '10 at 15:27
I used it only once, when I needed to write some low level stuff. The docs are very fine, though. – gruszczy Jan 27 '10 at 15:53
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.