Answers for "openpyxl write in cell"

0

openpyxl write in cell

import openpyxl
wb = load_workbook(filename='xxxx.xlsx')
ws = wb.worksheets[0]
ws['A1'] = 1
ws.cell(row=2, column=2).value = 2
ws.cell(coordinate="C3").value = 3  # 'coordinate=' is optional here
Posted by: Guest on May-31-2021

Code answers related to "openpyxl write in cell"

Python Answers by Framework

Browse Popular Code Answers by Language