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)
#Write a python script to store binary number 1100101 in a variable and print it in
Comments
Post a Comment