📍 결측치 : 비어있는 데이터 ✅ 엑셀로 열기 : pd.read_excel('파일명.xlsx', index_col='column') In [1]: import pandas as pd df = pd.read_excel('score.xlsx', index_col='지원번호') # index 설정 df Out[1]: ✅ 결측치로 채우기 : df['column'] = np.nan In [2]: import numpy as np df['학교'] = np.nan # 학교 데이터 전체를 NaN으로 채움 df Out[2]: ✅ 결측치 찾기 : isnull(), isna() In [3]: df['SW특기'].isnull() Out[3]: 지원번호 1번 False 2번 False 3번 False 4번 True 5번 Tru..