A Python module to help you manage your bits

•The binary number system uses 2 symbols, and therefore has a radix or base of 2. •Symbols are [ 0 and 1 ], also known as bits or binary digit •Every bit in Binary number system is identified from its position i.e. from right to left as (for e.g. 110) :- •It means : 1 x 22 + 1 x 21 + 0 x 20 will give its decimal equivalent ................
................