Posts by Diego Provesi • 43 points
3 posts
-
2
votes1
answer73
viewsQ: Plot horizontally (column by column) - Python
Good afternoon, my friends All right? I have an XML file from which I would like to remove the data as shown below and plot in columns, not row by row as the code is performing, in case the data…
-
1
votes2
answers104
viewsA: Insert text into its proper cells - Python
Code that worked: import csv with open('/content/Pasta2.csv', 'w') as out_file: writer = csv.writer(out_file, delimiter=',',lineterminator='') writer.writerow(('URL','Documento', 'Código CVM', 'Data…
-
1
votes2
answers104
viewsQ: Insert text into its proper cells - Python
Hello, my friends I am developing the code so that I can clean and organize the data (as shown above) and one of the best ways was to insert the data into a file CSV so that later I could return it…