Counting bits in large string / bit vector

Nizamov Shawkat nizamov.shawkat at gmail.com
Mon Sep 26 03:56:56 EDT 2011


> Is there an equivalent command in python that would immediately provide the
> number of set bits in a large bit vector/string
>

You might be able to achieve this using numpy boolean array and, e.g,
the arithmetic sum function or something similar.
There is also another library  http://pypi.python.org/pypi/bitarray
which resembles numpy's bit array.

Hope it helps,
S.Nizamov



More information about the Python-list mailing list