gpt4 book ai didi

Python/mysql : Result into two Lists

转载 作者:太空宇宙 更新时间:2023-11-03 19:28:52 25 4
gpt4 key购买 nike

我试图使用 Python 脚本和 matplotlib 绘制 MySQL 结果

import MySQLdb
import matplotlib.pyplot as plt

conn = MySQLdb.connect (host = "localhost",
user = "testuser",
passwd = "testpass",
db = "test")
cursor = conn.cursor ()
cursor.execute ("SELECT id,secondid from table limit 10")
row = cursor.fetchall()
print "RESULT:", row[0]
cursor.close ()
conn.close ()

我将通过像这样的简单传递来绘制这两个列表

id,ts=zip(*row)  #cThis will solve the problem


plt.plot(id,secondid)
plt.grid()

但是我很困惑创建两个列表,因为查询结果是元组列表。请建议。

最佳答案

答案是

id,secondid=zip(*row)

关于Python/mysql : Result into two Lists,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7016038/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com