Posts by Gregory Bueno • 57 points
3 posts
-
1
votes2
answers72
viewsA: Accountant who does not count
was taking a look at your code. You should perform 2 adjustments, the variables of counters should be out of the loop and should remove the \n of the value variable. import datetime import os import…
pythonanswered Gregory Bueno 57 -
4
votes2
answers3274
viewsA: How to convert monetary number to extended number in Python
Can be used num2words with the parameter lang=pt_BR to convert an integer to an extended number, an example that includes the format and addition of cent(s) or real(ais) in the returned string: from…
-
-2
votes2
answers3274
viewsQ: How to convert monetary number to extended number in Python
How can I convert a monetary number into an extended number using Python ?