Sometimes, we want to convert integer to binary in Python.
In this article, we’ll look at how to convert integer to binary in Python.
How to convert integer to binary in Python?
To convert integer to binary in Python, we can use the string’s format
method.
For instance, we write:
b = '{0:08b}'.format(6)
print(b)
We use the {0:08b}
format placeholder to convert the integer 6 to a binary number with 8 digits in the string.
Therefore, b
is '00000110'
.
Conclusion
To convert integer to binary in Python, we can use the string’s format
method.