“Como converter CSV em lista” Respostas de código

Leia o CSV como List Python

import csv

with open('file.csv', newline='') as f:
    reader = csv.reader(f)
    data = list(reader)

print(data)
Gubo97000

Como converter CSV em lista

open('file.csv', 'r').read().splitlines() #assuming you want each row to be an individual element in the list
TheRubberDucky

Respostas semelhantes a “Como converter CSV em lista”

Perguntas semelhantes a “Como converter CSV em lista”

Mais respostas relacionadas para “Como converter CSV em lista” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código