Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a list: ['1','2','3'] and want to convert it to 1,2,3 i.e. no brackets or quotation marks.

share|improve this question
Do you just want a comma separated list in text form or a csv file? – martineau Jan 7 '11 at 6:05

6 Answers

If you want to generate a canonical CSV file, use the csv module.


Example from the docs:

>>> import csv
>>> spamWriter = csv.writer(open('eggs.csv', 'wb'), delimiter=' ',
...                         quotechar='|', quoting=csv.QUOTE_MINIMAL)
>>> spamWriter.writerow(['Spam'] * 5 + ['Baked Beans'])
>>> spamWriter.writerow(['Spam', 'Lovely Spam', 'Wonderful Spam'])
share|improve this answer
would you mind giving s quick example of that – carl stebbings Jan 7 '11 at 3:24
Sure. It's added to the answer. Just use foo.writerow(list), where foo is your csv.writer object. – syrion Jan 7 '11 at 3:27
IMHO a "canonical" CSV would use comma as a delimiter, not ' ', and probably '"' as the quotechar, not '|'. – martineau Jan 7 '11 at 6:02
True. In that case, you can omit those two options. – syrion Jan 7 '11 at 11:59
",".join(lst)

will do it, but that's not really csv (would need escaping and such).

share|improve this answer
import csv

def writeCsvFile(fname, data, *args, **kwargs):
    """
    @param fname: string, name of file to write
    @param data: list of list of items

    Write data to file
    """
    mycsv = csv.writer(open(fname, 'wb'), *args, **kwargs)
    for row in data:
        mycsv.writerow(row)

mydat = (
    ['Name','Age','Grade'],
    ['Teri', 14, 7],
    ['John', 8, 2]
)

writeCsvFile(r'c:\test.csv', mydat)
share|improve this answer

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?

share|improve this answer
Has the file flushed and closed? (This will happen automatically if csvwriter goes out of scope.) If you are running it from an interactive prompt, it may still be buffering your output. – Hugh Bothwell Jan 7 '11 at 13:57
Not really sure what you're asking. I'm running this as a script. – carl stebbings Jan 7 '11 at 14:04

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.

share|improve this answer

Thanks. so for my code:

csvwriter = csv.writer(open('test.csv', 'wb'))
for item in pct:
    csvwriter.writerow(item)

I need to add?

csvwriter.close()

It didn't like that.....

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.