So lesen Sie die erste Spalte von CSV Intro a List Python

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