Decimal number to hexadecimal:

 decimal = int(input("Enter a decimal number: "))

hexadecimal = hex(decimal).replace("0x", "") print("Equivalent hexadecimal number:", hexadecimal)

Comments

Popular posts from this blog

Ecommerce website

# prompt: python program to generate fibonacci series

Your task is to find the missing number.