Instagram
youtube
Facebook
Twitter

Convert Decimal to Octal

A Python program to convert a decimal number to its octal equivalent using the oct() function.

Explanation:

  1. Take Input: Accepts a decimal number from the user.
     
  2. Convert to Octal: Uses oct(num) to convert decimal to octal.
     
  3. Remove Prefix: [2:] removes the '0o' prefix from the octal string.
     
  4. Display Output: Prints the octal equivalent of the input number.
     

Program:

num = int(input("Enter a decimal number: "))  

print("Octal:", oct(num)[2:])