openpyxl → we can work with excel files (.xlsx)
File → Workbook → Sheets → Rows → Cells
Read data :
data = sheet.cell(r, c).value
Write data :
sheet.cell(r, c).value = “value”
workbook.save(file) # save the file after entering the data