Posts by Robson de Melo • 11 points
4 posts
-
0
votes0
answers16
viewsQ: How to format output numbers using Pandas package?
I’m new to Python. Using "formatters" and Pandas package, how to format the output of a decimal number to the Brazilian standard ? I did that and it worked, but if there’s any simpler way...…
pandasasked Robson de Melo 11 -
0
votes1
answer37
viewsA: Send Email formatted Python
Pandas has the method .to_html() to convert each table into HTML and you add to the report. You’ve tested this method?
-
1
votes1
answer633
viewsA: Parse txt file and return to another file - Python
I solved the problem... To read the file, I used: file_i = open(filename input, 'r') I used the following instruction to store the file lines (as it will be necessary to read the same file several…
-
0
votes1
answer633
viewsQ: Parse txt file and return to another file - Python
Good night! There is a file with numbers, save in txt format, each number separated by space, with a list with about 50 values in each line of the txt file (and more than 10,000 lines in the file):…