Ad
  • Default User Avatar

    Thanks a lot, still learning python and this came as a great painkiller.

  • Default User Avatar

    Example test harness, hope this helps:

    
    class RomanNumerals:
        def __init__(self, value):
            self.value = value
        @classmethod
        def to_roman(self,s):
            pass
        @classmethod
        def from_roman(self,s):
            pass