Back

Explore Courses Blog Tutorials Interview Questions
0 votes
4 views
in Python by (47.6k points)

How do you express an integer as a binary number with Python literals?

I was easily able to find the answer for hex:

>>> 0x12AF 

4783 

>>> 0x100 

256

and octal:

>>> 01267 

695 

>>> 0100 

64

How do you use literals to express binary in Python?

1 Answer

0 votes
by (106k points)

To express an integer as a binary number with Python literals you can use the below-mentioned ways:-

In Python you can express binary literals using the prefix 0b or 0B below is the example for the same:

>>> 0b101111

image

If you want to express integer into binary then you can use the new bin function to get the binary representation of a number:

>>> bin(173) 

image

Related questions

0 votes
1 answer
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...