Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pt_BR] Issue with the hundreds of millions, billions, ... when the hundreds of those are exact. #435

Closed
Daniel-EST opened this issue Jan 28, 2022 · 0 comments · Fixed by #436

Comments

@Daniel-EST
Copy link
Contributor

Expected Behaviour

>>> nums = [100000000, 100000000000, 100000000000000, 100000000000000000]
>>> for num in nums:
...    num2words(num, lang="pt_BR")
...
'cem milhões'
'cem bilhões'
'cem trilhões'
'cem quatrilhões'

Actual Behaviour

>>> nums = [100000000, 100000000000, 100000000000000, 100000000000000000]
>>> for num in nums:
...    num2words(num, lang="pt_BR")
...
'cento milhões'
'cento bilhões'
'cento trilhões'
'cento quatrilhões'

Steps to reproduce

mrodriguezg1991 added a commit that referenced this issue Aug 19, 2022
Fixes #435 [pt_BR] Issue with the hundreds of millions, billions, ... when the hundreds of those are exact.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
1 participant