우노
[Python] file read 시 head 제거 본문
file read 시 head 제거
기존 데이터
# Undirected graph: ../../data/output/dblp.ungraph.txt # DBLP # Nodes: 317080 Edges: 1049866 # FromNodeId ToNodeId 0 1 0 2 ...
read 시 head 제거
with open(inputfile,"r") as rf: # 첫 4줄(head) 제거 for i in range(4): next(rf) # head 이후부터 읽기 for i in rf: print(i)
0 1 0 2 ...
'Language > Python' 카테고리의 다른 글
[Python] Numpy random 모듈 정리 (0) | 2020.12.03 |
---|---|
[Python] Matplotlib Color 종류 (0) | 2020.12.01 |
[Python] Pandas DataFrame을 numpy 배열로 변환하는 방법 (1) | 2020.11.26 |
[Python] Numpy 2차원 배열 생성 방법 (0) | 2020.11.26 |
[Python] Pandas DataFrame index 정렬 및 초기화 (0) | 2020.11.20 |
Comments