python3.3从mysql里取出的数据莫名其妙有括号和逗号

2025-01-07 16:59:12
推荐回答(1个)
回答1:

将:for row in temp: print(row)
改为:for (row,) in temp: print(row)