Write a python script to store an octal number 125 in a variable and print it in binary format

# Write a python script to store an octal number 125 in a variable and print it in binary
#format
a=0o125
print(bin(a))

Comments

Popular posts from this blog