python convert binary / hexadecimal / decimal to binary / hexadecimal / decimal code example

Example 1: python convert binary / hexadecimal / decimal to binary / hexadecimal / decimal

## First install the module coden with pip in cmd
# pip install coden

## import module
import coden

## Convert

# Binary to Decimal
ans = coden.bin_to_int(number)
# Binary to Hexadecimal
ans = coden.bin_to_hex(number)

# Hexadecimal to Decimal
ans = coden.hex_to_int(number)
# Hexadecimal to Binary
ans = coden.hex_to_bin(number)

# Decimal to Binary
ans = coden.int_to_bin(number)
# Decimal to Hexadecimal
ans = coden.int_to_hex(number)


# Thank you!

Example 2: convert decimal to hex python

hex(x) being x the integer you want to convert

Example 3: python library to convert decimal into octal and hexadecimal

dec =13
print(bin(dec),oct(dec),hex(dec))		#prints decimal,octal,hexadecimal value of 13