Inserting data vertically in a column using xlsxwriter | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

24th Jun 2018, 2:06 PM
AISHWARYA KASTHALA
AISHWARYA KASTHALA - avatar
1 Answer
+ 6
Considering you already have the header of the column ready: for i in range(len(topwords)): worksheet.write(i, 1, topwords[i])
24th Jun 2018, 4:04 PM
Kuba Siekierzyński
Kuba Siekierzyński - avatar