octal conversion python code example
Example: python octal conversion
# Python program to convert decimal into other number systems
dec = 344
print("The decimal value of", dec, "is:")
print(oct(dec), "in octal.")
# Python program to convert decimal into other number systems
dec = 344
print("The decimal value of", dec, "is:")
print(oct(dec), "in octal.")