apalopohapa

Resultados 1 preguntas formuladas por apalopohapa

import csv with open('test.csv', 'w') as outfile: writer = csv.writer(outfile, delimiter=',', quoting=csv.QUOTE_MINIMAL) writer.writerow(['hi', 'dude']) writer.writerow(['hi2', 'dude2']) El código anterior genera un archivo, test.csvcon un archivo adicional \ren cada fila, así: