Hello, I have the following list
l=[[1,2,3,4],[5,6,7,8]]
and I want to generate a csv file something like this:
1 5
2 6
3 7
4 8
the code that I have worked on is this
with open("output.csv", "wb") as f:
writer = csv.writer(f)
w...
asked on
02.06.2016 / 15:40