12
Python importa csv a la lista
Tengo un archivo CSV con aproximadamente 2000 registros. Cada registro tiene una cadena y una categoría: This is the first line,Line1 This is the second line,Line2 This is the third line,Line3 Necesito leer este archivo en una lista que se ve así: data = [('This is the first line', 'Line1'), …