Answers for "decimal conversion python"

-1

decimal conversion python

#Example with binary number 10101100 which is 172 in denary

number = 10101100
print(int(str(number),base=2))

#Prints out the denary value so 172 in this example.
Posted by: Guest on February-28-2021

Code answers related to "decimal conversion python"

Python Answers by Framework

Browse Popular Code Answers by Language