0
Inserting data vertically in a column using xlsxwriter
i have some words i need to insert those words vertically in a column in excel using xlsxwriter for eg: topwords = [hi,hello,are] column shold be named as 'words',in this column i want to insert those words vertically words hi hello are
1 ответ
+ 6
Considering you already have the header of the column ready:
for i in range(len(topwords)):
worksheet.write(i, 1, topwords[i])