Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
How to Convert Decimal to Binary, Octal, and Hexadecimal using Python?
Python provides straightforward functions to convert Decimal to Binary, Octal, and Hexadecimal. These functions are −
Binary: bin() Octal: oct() Hexadecimal: hex()
Example
You can use these functions as follows to get the corresponding representation −
decimal = 27 print(bin(decimal),"in binary.") print(oct(decimal),"in octal.") print(hex(decimal),"in hexadecimal.")
Output
This will give the output −
0b11011 in binary. 0o33 in octal. 0x1b in hexadecimal.
Advertisements
