Answer the question
In order to leave comments, you need to log in
How to get the contents of a specific row in an excel table in python using openpyxl?
A recording has been made
fn = 'table.xlsx'
wb = openpyxl.load_workbook(fn)
ws = wb['data']
ws.append(['a', 'b'])
ws.append(['c', 'd'])
wb.save(fn)
wb.close
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question