ADITYA KUMAR SINGH
ADITYA KUMAR SINGH
> > Getting 0 every time > > @autosaver Are you overriding the `max_decimal` kwarg with `decimal_to_roman_numerals(max_decimal=0)` or `decimal_to_roman_numerals(0)` ? > > https://github.com/lukew3/mathgenerator/blob/6e11124a1cd3840dfc1b78f8f3cdea5b02f65744/mathgenerator/misc.py#L193 Actually I was calling it directly without...
It seems its using : ``` from ...generator import Generator import random import math def gen_func(maxDecimal=4000): x = random.randint(0, maxDecimal) roman_dict = { 1: "I", 5: "V", 10: "X", 50:...