python - flatten tuple into csv -
I have an array with the name and id, I've used Python zip and dict works
< which gives me tuples like the following:
[[[ "F1", "1234" Now, I want to write this id in a column and in the second column to write this template in a CSV file that should be visible. Like: fnames id f1 1234 f2 15234
Any thoughts or suggestions about doing this?
Comments
Post a Comment