Python Hexa Decimal to Decimal
Python program to get an Hexadecimal number and covert it to Decimal number
Sample Input 1 :
A
Sample Output 1 :
10
Program or Solution
num=0xb
print(num)
Program Explanation
0X denotes hexadecimal literalComments
Related Programs
- Python Hello World
- Python get input
- Python get Integer input
- Python get float input
- Python Decimal places
- Python New Line
- Python without new line
- Python tab Space
- Python Tuple Assignment
- Python Integer to Character
- Python Decimal to HexaDecimal
- Python Decimal to Octal
- Python Octal to Decimal
- python Exponent representation
coming Soon
coming Soon