In [3]: import pandas as pd In [4]: #pandas의 read_excel()을 이용해 엑셀 파일 불러오기. 파일명 앞뒤에 따옴표''넣어야 하고 확장자(.xlsx)까지 입력. df_exam=pd. read_excel('excel_exam.xlsx') #엑셀파일 불러와 df_exam에 할당 df_exam Out[4]: id nclass math english science 0 1 1 50 98 50 1 2 1 60 97 60 2 3 1 45 86 78 3 4 1 30 98 58 4 5 2 25 80 65 5 6 2 50 89 98 6 7 2 80 90 45 7 8 2 90 78 25 8 9 3 20 98 15 9 10 3 50 98 45 10 11 3 65 65 65 11 12 3..