Basic | CSV 파일 읽기 12 Oct 2022 in Python for 데이터 분석 파이썬에서 csv 파일 읽는 법import csv csvreader = csv.reader(open("test.txt")) for line in csvreader: print(line)