Comment lire la première colonne de CSV Intro une liste Python

with open("mylist.csv") as f:
    list2 = [row.split()[0] for row in f]
Galvik Codex