来自SQL的python unicode格式

我正在使用 Python 提取 MySQL 数据,如下所示。但是我得到如下字符。我不需要数据类型,只需要值 - 我可以这样做吗?


[[u'Fri', Decimal('3004043')], [u'Mon', Decimal('1450340')], [u'Sat', Decimal('1670562')], [u'Sun', Decimal('2373750')], [u'Thu', Decimal('3116066')], [u'Tue', Decimal('729403')

这是查询


mycursor = mydb.cursor()


mycursor.execute("SELECT day, sum(interactionCount) as ic FROM tw_posts group by day")


posts = []

for x in mycursor:

  day = x[0]

  ic = x[1]

  inner = [day, ic]

  posts.append(inner)


print(posts)


慕标5832272
浏览 67回答 1
1回答

潇潇雨雨

尝试使用:myresult = mycursor.fetchall()for x in myresult:  print(x)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python