如何在python中打印没有不需要的字符的SQL查询结果?

时间:2018-04-05 21:55:04

标签: python

我有以下代码

engine = create_engine('database info',convert_unicode=True) 

result = engine.execute(" select title from table")

line=(result.fetchall())

print(line)

部分结果中插入了“\ xa0”

有没有办法返回我的查询,以便我不必在事后修复它?

0 个答案:

没有答案