I am able to write into new xlsx workbook using
import xlsxwriter def write_column(csvlist): workbook = xlsxwriter.Workbook(\"filename.xlsx\",{\'strin
you can use this code to open (test.xlsx) file and modify A1 cell and then save it with a new name
import openpyxl xfile = openpyxl.load_workbook('test.xlsx') sheet = xfile.get_sheet_by_name('Sheet1') sheet['A1'] = 'hello world' xfile.save('text2.xlsx')