Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does the "0b" mean at the begining of the byte 0b1100010?

Tags:

python

binary

As part of a small python project I'm working on, I needed to convert text to a binary string. To accomplish this I used

list(map(bin,bytearray(message,'utf8')))

The result was 0b1100010 and I get the 1100010 part, but what does the 0b part mean?

like image 528
Hexagon789 Avatar asked Sep 01 '17 14:09

Hexagon789


2 Answers

This is how Python tells you what base the number is:

Base 2 looks like this:

0b111010

Base 16 looks like this:

0x...

Base 8 looks like this:

0...

and etc.

Hope it helps!

like image 55
Jahongir Rahmonov Avatar answered Oct 25 '22 01:10

Jahongir Rahmonov


0b is the Python prefix for the representation of binary numbers.

For example:

>>> bin(1024)  # Convert an integer number to a binary string
'0b10000000000'
like image 26
floatingpurr Avatar answered Oct 25 '22 02:10

floatingpurr