I have an integer which I want to convert to binary and store the string of bits in an one-dimensional array starting from the right. For example, if the input is 6 then it should return an array like [1,1,0]. How to do it in python?
|
|
||||
|
|
SolutionProbably the easiest way is not to use
How it behaves:
In case of Getting list of
|
If you don't want a list of ints (but instead one of strings) you can omit the
Relevant documentation: |
|||||||||
|
|
You can use the
Edit: oops, forgot to convert items to
|
|||
|
|
|
In modern Python you can (
Discard the first '0b':
Everything together:
In 2.5 you will get an |
||||
|
|
|
You could use this command:
What it does is this:
|
||||
|
|
|
Others answers use
The |
|||
|
|
|
Using the
Alternatively, you can use |
|||
|
|