1
在我的Python代碼中,我試圖設置一個範圍('E3:H28')。但是,'H'列字母需要是一個變量。下面的代碼不會爲我跑:在openpyxl中,如何使用'get_column_letter'函數設置範圍?
mo = 3
bc_col = 5 + mo
for row in ws.iter_rows('E3:get_column_letter(bc_col)28'):
for cell in row:
ws_blnd1[cell.coordinate] = ws[cell.coordinate].value
查理C,你的「否則」解決方案爲我工作。非常感謝你。哪裏是最好的地方,以獲得openpyxl 2.4?,豐富 –
'pip安裝-U --pre openpyxl' –