Answers for "binary to decimal python"

0

binary to decimal python

==== Convert binary to decimal in Python ======
a = '11001100' # input a binary

b = int(a,2) # base 2 to base 10
print(b,type(b)) # 204 <class 'int'>
Posted by: Guest on September-22-2021

Code answers related to "binary to decimal python"

Python Answers by Framework

Browse Popular Code Answers by Language