answersLogoWhite

0


Best Answer

>>> hex_val = "ab3795d1c49ef1bb"

>>> decimal_val = int(hex_val,16)

>>> decimal_val

12337494432384217531L

>>> binary_val = bin(decimal_val)

>>> binary_val

'0b1010101100110111100101011101000111000100100111101111000110111011'

#note that the string that represent the binary number starts with '0b'.

# you can remove it if you want like this:

>>> binary_val = binary_val[2:]

>>> binary_val

'1010101100110111100101011101000111000100100111101111000110111011'

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Convert 16 digit hex key to 64 bit binary in python programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you convert hexadecimal 4c.B7 to Binary?

Convert each hex digit to four binary digits. If you get less than three (for example, 7 --> 111), fill it out with zeroes to the left (in this case, 0111).


A 1 or 0 in the binary number system is called?

A 0 or 1 in a binary number is called a bit. A binary number is made up of only ones and zeroes.


Was binary stands for binary digits?

No, binary is a number system.A binary digit is called a bit.


What does hexadecimal base 16 convert binary equal?

16 is the 4th power of 2. So a hexadecimal number is converted to binary by replacing each hex digit by the 4-bit binary number having the same value. Conversely, in converting binary to hexadecimal, we group every 4 bits starting at the decimal (binary?) point and replace it with the equivalent hex digit. For example, the hexadecimal number 3F9 in binary is 1111111001, because 3 in binary is 11, F (decimal 15) is 1111, and 9 is 1001.


To convert a hexadecimal number to tis binary equivalent in qbasic?

NOTE: The program below is written in the form of a straight forwards 'table/look up' chart. It will, quite simply, convert no more than 1 single hex digit character, at a time, into its binary number equivalent. If you wish to convert a whole entire string of hex digit characters together at once; then, I suggest you will need to 'modify' the program yourself by using, possibly, a 'FOR/NEXT loop' statement to extract out each separate hex character which needs to be converted from the users input/together with a function such as, 'MID$()'. ==== Here is a sample program RUN/Output... Please, enter your single character hex digit(0-9/A-F): ? C The binary equivalent of the above hex digit is: 1100

Related questions

How do you convert binary number to bcd number on paper?

Example Binary 00111000 Convert to Decimal 56 Convert to BCD by using groups of four binary numbers for each digit 5 6 0101 0110


How convert the binary number 110101001 to decimal then to octal?

You can use the Windows calculator to do the conversions. If you want to learn how to do it yourself:To convert binary to decimal, multiply the right-most digit with 1, the second digit (from the right) with 2, the third with 4, etc.To convert to octal, group the bits from the right to the left, in groups of 3. Convert each group to a decimal digit.


How do you convert a octal to its binary number?

Convert every octal digit into three binary digit: 0->000 1->001 2->010 3->011 4->100 5->101 6->110 7->111


What is short for a binary digit?

bit = binary digit


How do you convert hexadecimal 4c.B7 to Binary?

Convert each hex digit to four binary digits. If you get less than three (for example, 7 --> 111), fill it out with zeroes to the left (in this case, 0111).


What does the acronym BIT mean?

Binary Digit Binary Digit


Why is it impossible to convert a decimal number to binary on a digit by digit basis as can be done for Hexadecimal?

Because - Hex is an exact multiple of binary - whereas decimal numbers need to be converted from base 10 to base 2.


What binary number does 5A34F16 represent?

It is simplest to convert each hexadecimal digit into its 4-digit binary equivalent. So: 5 = 0101 A = 1010 3 = 0011 4 = 0100 F = 1111 6 = 0101 So, the binary equivalent is 10110100011010011110101.


What is the binary code for 64111?

I assume you mean decimal 64,111 You could assemble a table of powers of 2, then use successive subtraction to convert to the binary expansion. I cheated and used the built-in programming calculator on my PC. It says that 64111 (decimal) = FA6F (hexadecimal) This can easily be expanded to binary digit by digit: F=1111 A=1010 6=0110 F=1111 So the final answer is: 1111101001101111 Note that the number 2^16 = 65,536 (which is slightly bigger) has a binary equivalent of 10000000000000000 i.e., a one followed by 16 zeroes.


How to convert binary number to its equivalent decimal number answer in simple form?

Each binary digit represents 2 times that of the digit to its right. So for example: 10b = 2d 100b = 4d 1010b = 8d + 2d = 10d


How will you convert octal to hexadecimal?

Each octal digit is equivalent to three binary digits; each hexadecimal digit is equal to four binary digits. I think the best way to do this conversion is to convert each octal digit into the binary equivalent (3 digits in each case - don't omit the zeros on the left), then convert the binary to hexadecimal by grouping four binary digits at a time (starting from the right). Note that nowadays, most scientific calculators - including the calculator that comes included in Windows - have the ability to do this sort of conversion. If you want to practice doing it yourself, you can still use the Windows calculator to check your calculations.


What is meant by bit?

Bit is the binary digit code, which is used in computer programming. Its represented by 1 and 0. Its show the memory of the status which was uploaded by the users.