jcarbaugh / python-serpente

Roman numeral encoder and decoder

This URL has Read+Write access

name age message
file LICENSE Loading commit data...
file MANIFEST.in
file README.rst
file serpente.py
file setup.py
README.rst

python-serpente

Roman numeral conversion module.

Installation

python setup.py install

Usage

>>> import serpente
>>> serpente.encode(1234)
u'MCCXXXIV'
>>> serpente.decode(u'MCCXXXIV')
1234