without haste but without rest
[python] csv 헤더 패스하기 본문
이터레이터 next로 한 줄을 넘어간다.
import csv
with open("mycsv.csv", "r") as csvfile:
csvreader = csv.reader(csvfile)
# This line skips the first row of the CSV file.
next(csvreader)
for row in csvreader:
# do stuff with rows...
참조
'ProgrammingLanguage > Python' 카테고리의 다른 글
[python] 파이썬 이모지 보내기 (0) | 2021.06.23 |
---|---|
슬랙 API 메세지 전송 템플릿 - python (0) | 2021.06.11 |
[python] 날짜 계산 (0) | 2021.05.06 |
[python] [ [0] * n ] * m 과 [ [0] * n for _ in range(m) ] 의 차이 (1) | 2021.04.28 |
[python] 달의 마지막 일자 구하기 (0) | 2021.02.16 |
Comments