标签: python
我有以下代码
engine = create_engine('database info',convert_unicode=True) result = engine.execute(" select title from table") line=(result.fetchall()) print(line)
部分结果中插入了“\ xa0”
有没有办法返回我的查询,以便我不必在事后修复它?