deepseekimport pandas as pdfrom openpyxl import load_workbookimport osdef update_excel_sheets(file_path, sheet_updates, output_path=None, start_row=0, start_col=0, include_header=False): """경로 문제를 해결한 최종 버전""" # 절대 경로로 변환 (중복 경로 제거) file_path = os.path.abspath(file_path) print(f"실제 접근 경로: {file_path}") # 디버깅용 출력 if output_path is None: output_path = file_path else: ..