python 에서 xlsx 파일 읽어오는법

rowingRoot·2022년 7월 7일
0

troubleshooting

목록 보기
3/4
post-thumbnail
pd.read_excel(path)

이렇게 코드 작성시 지원하지 않는다는 에러 발생

해결방법: 인자에서 engine='openpyxl' 입력

#예시
 data=pd.read_excel(path,engine='openpyxl',sheet_name=[1,2,3,4]

0개의 댓글