decimal number converter code python code example
Example: 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.