감동, 마음이 움직이는 것
[Python] 열로 데이터 읽어들이기 본문
[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.
'Tips (Utility, Computer Language, and etc.)' 카테고리의 다른 글
[gnuplot] bracket (0) | 2017.11.29 |
---|---|
[LaTex] inserting one column equation in two column mode (0) | 2017.11.29 |
[python] list출력(join사용) (0) | 2017.11.07 |
[mathematica] axis scale바꾸기 (ScailingFunctions) (0) | 2017.11.01 |
[Latex] differenciate at (0) | 2017.10.31 |