Here is some example xlsxwriter code to write into the worksheet:
workbook = xlsxwriter.Workbook('example.xlsx')
worksheet = workbook.add_worksheet()
worksheet.write('A1', 'Hello')
worksheet.write('A2', 'World', bold)
What may be noticed immediately is the cell to write must always be specified. Is there a way to write to the next empty cell, or perhaps a workaround to write to an empty cell? Say I wanted to write to our next empty cell no matter where in column A it was. Is there a way to do this?