You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
convert ukrainian currency into words should use feminine form. if change language to 'ru', most similar to ukrainian, conversion works well and gives feminine form as ecpected
Expected Behaviour
convert ukrainian currency into words should use feminine form. if change language to 'ru', most similar to ukrainian, conversion works well and gives feminine form as ecpected
whole = '21'
integer_words = num2words.num2words(int(whole), to='cardinal', lang='uk', gender='f')
print(integer_words)
in urkainian i expect to have
двадцять одна
Actual Behaviour
after print a get
двадцять один
Steps to reproduce
import num2words
number_str = '21'
integer_words = num2words.num2words(int(number_str), to='cardinal', lang='uk', gender='f')
print(integer_words)
The text was updated successfully, but these errors were encountered: