0

我试图将 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 

我怎样才能使它们与我在代码中提到的相同?

我错过了什么?

4

1 回答 1

1

您的数据中似乎必须有换行符。在打印和写入文件之前剥离它们:

Sentence = detail2[1].rstrip('\n')
于 2013-03-05T20:04:26.860 回答