I have a python script that prints lines in a comma delimited format.
The output currently looks like this:
a,b,c,d
e,f,g,h
i,j,k,l
I want to be able to take this output and append it to a Google spreadsheet. If using Excel is an easier route, I would be open to that solution too.
Is creating a CSV and then importing to a Google/Excel the right way to go or should I look into another way of doing this?