I am exporting my data from a list of lists.
when I run the following code
with open('out5.txt','w') as f : f.write ('\t'.join(z[0][0])) for i in rows: f.write ('\t'.join(i))
everything is in the same line but I want a file like this
id name Trans ENS001 EGSB TTP EN02 EHGT GFT
' 'with'\t', and changed the name of the output file. What am I missing?