Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
c.execute("select a, c, d from table")
for row in c:
    print(row)

Whenever I go this, the output is always:

('text field 1', 'text field 2', 'text field 3', 'text field 4')

I've been googling and cannot find the answer, is there a way I can make it like

text field 1, text field 2, text field 3, text field 4

?

share|improve this question

2 Answers

up vote 3 down vote accepted

You printed the whole row, which is a tuple. To print it with a little formatting, you could use ''.join():

', '.join(row)
share|improve this answer
@RocketDonkey: I just did so! [-_-]~ – Martijn Pieters Feb 6 at 7:42
Haha, now I need to get to work on figuring out how to +2 :) – RocketDonkey Feb 6 at 7:43
thank you so much, this has been getting to me! – Andrew Berry Feb 6 at 7:46

or you can use this

from itertools import imap

",".join(imap(str, row))
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.