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
print(p.number_to_words(541440))
print(p.number_to_words(541440, andword=','))
`
result:(the extra blank appear after four hunred) five hundred and forty-one thousand, four hundred and forty
five hundred, forty-one thousand, four hundred , forty
The text was updated successfully, but these errors were encountered:
code:
`import inflect
p = inflect.engine()
print(p.number_to_words(541440))
print(p.number_to_words(541440, andword=','))
`
result:(the extra blank appear after four hunred)
five hundred and forty-one thousand, four hundred and forty
five hundred, forty-one thousand, four hundred , forty
The text was updated successfully, but these errors were encountered: