bitset

Python equivalent to Java's BitSet

Python equivalent to Java's BitSet Question: Is there a Python class or module that implements a structure that is similar to the BitSet? Asked By: Mantas Vidutis || Source Answers: There’s nothing in the standard library. Try: http://pypi.python.org/pypi/bitarray Answered By: Glenn Maynard Have a look at this implementation in Python 3. The implementation basically makes …

Total answers: 5