감동, 마음이 움직이는 것

[Python] 열로 데이터 읽어들이기 본문

Tips (Utility, Computer Language, and etc.)

[Python] 열로 데이터 읽어들이기

Struggler J. 2017. 11. 25. 00:00

[Ref] https://stackoverflow.com/questions/30216573/reading-specific-columns-from-a-text-file-in-python


import csv

with open('file.txt') as inf:
    row_data = csv.reader(inf, delimiter=" ") #delimiter에 구분자를 넣을것 이 경우는 스페이스가 구분자임.
    col_data = zip(*row_data)    


More detailed explanation is available at the reference.