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
?