DPI [2-15] 클리핑 마스크 미적용시 [16~20] 문항 오답처리

This commit is contained in:
2025-09-15 17:07:06 +09:00
parent 6067dda923
commit 591bd07749
16 changed files with 1607 additions and 18 deletions

View File

@@ -1,5 +1,3 @@
# 분류된 "과목별" 폴더에서 시험 파일을 복사하는 스크립트
import os
import shutil
import re
@@ -75,8 +73,10 @@ def copy_exam_files(exam_round, exam_codes, source_dir):
# 사용 예시
if __name__ == "__main__":
exam_round = "2508"
exam_codes = ["DIC", "DPI"]
source_dir = r"D:\project\data\제2508회 정기\(전체답안)답안파일(과목별)"
exam_round = "2522"
# exam_codes = ["DIC", "DPI"]
exam_codes = ["DIC"]
# source_dir = r"D:\project\data\제2508회 정기\(전체답안)답안파일(과목별)"
source_dir = r"D:\project\data\제2522회 특별\(추가)과목별_답안파일"
copy_exam_files(exam_round, exam_codes, source_dir)