Menu Close

How to convert a Python int into a binary string?

Sometimes, we want to convert a Python int into a binary string.

In this article, we’ll look at how to convert a Python int into a binary string.

How to convert a Python int into a binary string?

To convert a Python int into a binary string, we can use the format method.

For instance, we write

s =  "{0:b}".format(88)

to convert 88 to a binary string by calling "{0:b}".format with 88.

Conclusion

To convert a Python int into a binary string, we can use the format method.

Posted in Python, Python Answers