- 공공기관2/3 작업본 + 오늘 제출 17곳 D~J 카테고리 셀병합 정상화 - 한국지역난방공사 옵션2(고아셀 F98 수정)+전행 높이17 - 제출_프리랜서2_2026-06-21.zip 생성(17개 xlsx, 2,468행) Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
40 lines
1.6 KiB
Python
40 lines
1.6 KiB
Python
# -*- coding: utf-8 -*-
|
|
import openpyxl, io
|
|
from collections import defaultdict
|
|
wb=openpyxl.load_workbook("한국지역난방공사.xlsx"); ws=wb.active
|
|
out=io.open("_effdup_out.txt","w",encoding="utf-8")
|
|
def w(*a): out.write(" ".join(str(x) for x in a)+"\n")
|
|
# build effective D..J by filling down using merged ranges
|
|
# approach: for each column D..J(4..10), fill blanks downward ONLY within merged spans
|
|
# Simpler: replicate merged top-left value across the merge range
|
|
eff={} # (r,c)->value
|
|
for r in range(3,ws.max_row+1):
|
|
for c in range(4,11):
|
|
eff[(r,c)]=ws.cell(r,c).value
|
|
for mr in ws.merged_cells.ranges:
|
|
if mr.min_col>=4 and mr.max_col<=10:
|
|
v=ws.cell(mr.min_row,mr.min_col).value
|
|
for r in range(mr.min_row,mr.max_row+1):
|
|
for c in range(mr.min_col,mr.max_col+1):
|
|
eff[(r,c)]=v
|
|
def epath(r):
|
|
return tuple((str(eff[(r,c)]).strip() if eff[(r,c)] not in(None,"") else "") for c in range(4,11))
|
|
def leaf(r):
|
|
p=[x for x in epath(r) if x]
|
|
return p[-1] if p else ""
|
|
# duplicate leaf NAME
|
|
byleaf=defaultdict(list)
|
|
for r in range(3,ws.max_row+1):
|
|
byleaf[leaf(r)].append(r)
|
|
w("=== rows sharing a leaf menu name (effective path) ===")
|
|
for nm,rs in sorted(byleaf.items()):
|
|
if len(rs)>1 and nm:
|
|
w("LEAF:",nm," rows:",rs)
|
|
for rr in rs:
|
|
fp=" > ".join(x for x in epath(rr) if x)
|
|
w(" r%d B%s L=%s M=%s N=%s"%(rr,ws.cell(rr,2).value,ws.cell(rr,12).value,ws.cell(rr,13).value,ws.cell(rr,14).value))
|
|
w(" path:",fp)
|
|
w(" K:",ws.cell(rr,11).value)
|
|
w("")
|
|
out.close(); print("done")
|