Posts

Showing posts with the label Write a python script to print any number and its octal equivalent.

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))