현재까지 해봤던 프로젝트 설명(CJ 해커톤 + ABC 부트캠프 + 졸업 논문(모델 이름 까먹어서 설명 제대로 못함))네이버 연봉계산기 완성import csvNON_TAXABLE = 2_400_000 # 연 비과세액NATIONAL_PENSION_CAP = 286_650 # 국민연금 월 상한def cut_10_won(value): return int(value // 10 * 10)def load_tax_table(path): table = [] with open(path, newline="", encoding="utf-8") as f: reader = csv.reader(f) for row in reader: cleaned = [..