c.execute("select a, c, d from table")
for row in c:
print(row)
これを行うたびに、出力は常に次のようになります。
('text field 1', 'text field 2', 'text field 3', 'text field 4')
私はグーグルで検索しましたが、答えが見つかりません。次のようにする方法はありますか
text field 1, text field 2, text field 3, text field 4
?