cursor.fetchall返回值如何转为字符串
时间: 2023-06-20 07:08:14 浏览: 419
python 操作mysql数据中fetchone()和fetchall()方式
`cursor.fetchall()` 返回的是一个包含所有查询结果的元组(tuple)列表。可以将其转换为字符串形式,方法如下:
```python
result = cursor.fetchall()
result_str = str(result)
```
将元组列表转换为字符串后,结果可能会比较长,因此建议在使用时进行适当的格式化或截断。例如,可以使用 `pprint` 模块进行漂亮的输出:
```python
from pprint import pprint
result = cursor.fetchall()
pprint(result)
```
阅读全文