1

Is it possible to insert list to Excel column using xlsxwriter library?

This is my current script:

list = ['a','b','c','d']
for letter in list                          
        list.append(letter)
worksheet.write('A1', list)

Can anybody could give me a simple insert of list so that I can have my reference?

1 Answer 1

5

Use:

worksheet.write_column('A1', list)

docs: https://xlsxwriter.readthedocs.org/worksheet.html#write_column

Sign up to request clarification or add additional context in comments.

1 Comment

I already test this but what I mean is to insert a list of list.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.