Skip to main content
Stack Overflow
  1. About
  2. For Teams

You are not logged in. Your edit will be placed in a queue until it is peer reviewed.

We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.

Required fields*

Required fields*

Converting integer to binary in Python

In order to convert an integer to a binary, I have used this code:

>>> bin(6)
'0b110'

and when to erase the '0b', I use this:

>>> bin(6)[2:]
'110'

What can I do if I want to show 6 as 00000110 instead of 110?

Answer*

Draft saved
Draft discarded
Cancel
1
  • Your answer could be improved with additional supporting information. Please edit to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers in the help center. Commented Dec 2, 2021 at 22:51

lang-py

AltStyle によって変換されたページ (->オリジナル) /