Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 535 Bytes

File metadata and controls

32 lines (19 loc) · 535 Bytes

Integer to Roman

Question

Write a program which converts the given input integer to roman numeral.

Solution

.. literalinclude:: ../../languages/python/algorithm_int_to_roman.py
   :language: python
   :tab-width: 4

.. runcode:: ../../languages/python/algorithm_int_to_roman.py
   :language: python
   :codesite: ideone

Explanation

.. seealso::

   * :python-suggest-improve:`algorithm_int_to_roman.py`
   * :python-better-explain:`algorithm_int_to_roman.rst`