본문 바로가기

Python

파이썬_파일 불러올 때 첫 행 제거하기 read_excel,read_csv

#정답
import pandas as pd
year19=pd.read_excel('D:\\account\\_PH_\\python\\2019년선적량.xls',skiprows=[0])
year19.head()

 

 

 

* 아래는 오답 또는 참고할 방법