[문제] LAST_NAME 에서 a 글자가 두 번이상 나온 LAST_NAME 출력해주세요 emp[emp['LAST_NAME'].str.findall('a').str.len() >= 2] emp.loc[(emp['LAST_NAME'].str.findall('a').str.len() >= 2), ['LAST_NAME']] [문제] 부서이름별 급여의 총액을 출력해주세요 #1) 부서이름별 급여의 총액 dept_sal = emp['SALARY'].groupby(emp['DEPARTMENT_ID']).sum() type(dept_sal) dept_sal.index #2) 조인 result = pd.merge(dept_sal, dept, left_index=True, right_on='DEPARTMENT_ID') r..