Skip to content
Advertisement

Python: Write list of lists to CSV

In my python script I’m having a list that has the following structure:

JavaScript

and so on. I want to write this list to csv file in a way that every element is in separate row and every string in one element is in separate column. So I want to end up with the following result in csv file:

JavaScript

Currently I have a code like this:

JavaScript

and the result I get is that every element of the list is written to column A, so it looks like this:

JavaScript

How can I achieve splitting each string to separate column in csv file?

–edit

If I run the code from the first three answers I get the same result(except for the delimeter):

enter image description here

But my idea it to get 00:00 in column A, -6 in column B and so on..

Advertisement

Answer

How about a pandas approach? Nice and simple …

JavaScript

Per the docs you can change the separator using the sep parameter.

[Edited] Output:

Content of output.csv as shown from the console:

JavaScript
User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement