Posts

Showing posts with the label Write a python script to store a hexadecimal number 2F in a variable and print it in #octal format.

Write a python script to store a hexadecimal number 2F in a variable and print it in octal format.

  #. Write a python script to store a hexadecimal number 2F in a variable and print it in #octal format. a= 0x 2F print(oct(a))