Write a python script to store binary number 1100101 in a variable and print it in decimal format.

 #Write a python script to store binary number 1100101 in a variable and print it in

#decimal format.
a=0b1100101
print(a)

Comments

Popular posts from this blog