I am using this code ``` from text_to_num import alpha2digit print(alpha2digit("The temperature is minus two point five", "en")) ``` and i expect to get ``` The temperature is -2.5 ``` but what i get is ``` The temperature is -.5 ``` it seems it has issue with negative decimal numbers.
I am using this code
and i expect to get
but what i get is
it seems it has issue with negative decimal numbers.