conversions.decimal_to_octal ============================ .. py:module:: conversions.decimal_to_octal .. autoapi-nested-parse:: Convert a Decimal Number to an Octal Number. Functions --------- .. autoapisummary:: conversions.decimal_to_octal.decimal_to_octal conversions.decimal_to_octal.main Module Contents --------------- .. py:function:: decimal_to_octal(num: int) -> str Convert a Decimal Number to an Octal Number. >>> all(decimal_to_octal(i) == oct(i) for i ... in (0, 2, 8, 64, 65, 216, 255, 256, 512)) True .. py:function:: main() -> None Print octal equivalents of decimal numbers.