我试图将 SQL 中的行写入文本文件。
我的代码:
result = 'C:/Users/Desktop/SWN_all_result.txt'
result_file = open(result, 'w')
sql_select2 = "select * from test01"
c.execute(sql_select2)
rows2 = c.fetchall()
for detail2 in rows2:
Sentence = detail2[1]
SWN_Note = detail2[4]
print Sentence, '\t', SWN_Note, '\n'
result_file.write(Sentence + '\t' + SWN_Note + '\n')
result_file.close()
db.close()
结果表明:
abc
neutral
cdf
positive
我怎样才能使它们与我在代码中提到的相同?
我错过了什么?