Python Octal to Decimal
Python program to get an Octal number and covert it to Decimal Number
Sample Input 1 :
14
Sample Input 1 :
12
Program or Solution
num=0o12
print(num)
Program Explanation
0O denotes octal 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 Hexa Decimal to Decimal
- Python Decimal to Octal
- python Exponent representation
coming Soon
coming Soon