T1-7 df[df['f4']=='ESFJ'] 엑세서 str 은 데이터 프레임에 안됨 df['f4'].replace('ESFJ','ISFJ') unsupported operand type(s) for &: 'str' and 'str' 오류시 =로 했는지 체크 -> 데이터 처음부터 다시 런타임하기 con1 = df['city']=='경기' con2 = df['f4']=='ISFJ' result = df[con1&con2]['age'].max() print(int(result)) T1-8 df2 = df[df['f2']==1]['f1'].cumsum() fillna(method='bfill') : back 값 채우기 pad : 앞 forward 같으로 채우기 -> 파라미터 암기 힘드니까 help(df.fil..