我正在从 python 的数据库中选择数据。
cur.execute("Select a,b,c from tab1")
print "a,b,c"
print "\n"
data = cur.fetchall()
print "".join(str(e) for e in data).replace("(","").replace(")","")
我想在每一行的末尾放置一个换行符。
输出应该看起来像
a,b,c
A,B,C //These values are from the database.
D,E,F
谢谢