Write a python script to print any number and its octal equivalent.

 # Write a python script to print any number and its octal equivalent.

a=4
print(oct(a))

Comments

Popular posts from this blog