We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
>>> 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'
>>> 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'
The text was updated successfully, but these errors were encountered:
74ba6ee
Merge pull request #436 from Daniel-EST/master
a218b33
Fixes #435 [pt_BR] Issue with the hundreds of millions, billions, ... when the hundreds of those are exact.
Successfully merging a pull request may close this issue.
Expected Behaviour
Actual Behaviour
Steps to reproduce
The text was updated successfully, but these errors were encountered: