I have a list: ['1','2','3'] and want to convert it to 1,2,3 i.e. no brackets or quotation marks.
|
|
If you want to generate a canonical CSV file, use the csv module. Example from the docs:
|
|||
will do it, but that's not really csv (would need escaping and such). |
|||
|
|
|
||||
|
|
|
I have the following: csvwriter = csv.writer(open('test.csv', 'wb')) for item in pct: csvwriter.writerow(item) The test.csv file is empty. Is my nomenclature wrong? |
|||||
|
|
Carl, whenever you write data into a file what Python actually does is buffer the data and then does its I/O operation with the file (writing the data into the file). This operation is called 'flushing' (the buffers). You have to make sure you are close()ing the opened file, if not, buffer won't be flushed and thus you won't have anything written in the file. |
|||
|
|
|
Thanks. so for my code:
I need to add?
It didn't like that..... |
||||
|
|