Basic | CSV 파일 읽기

파이썬에서 csv 파일 읽는 법

import csv

csvreader = csv.reader(open("test.txt"))

for line in csvreader:
    print(line)