我有一个Python脚本,每隔5秒查询一次MySQL数据库,收集帮助台票证的最新三个ID。我使用MySQLdb作为我的驱动程序。但问题是在我的“while”循环中,当我检查两个数组是否相等时。如果它们不相等,我会打印出“新票已到达”。但这永远不会打印!看我的代码:
import MySQLdb
import time
# Connect
db = MySQLdb.connect(host="MySQL.example.com", user="example", passwd="example", db="helpdesk_db", port=4040)
cursor = db.cursor()
IDarray = ([0,0,0])
IDarray_prev = ([0,0,0])
cursor.execute("SELECT id FROM Tickets ORDER BY id DESC limit 3;")
numrows = int(cursor.rowcount)
for x in range(0,numrows):
row = cursor.fetchone()
for num in row:
IDarray_prev[x] = int(num)
cursor.close()
db.commit()
while 1:
cursor = db.cursor()
cursor.execute("SELECT id FROM Tickets ORDER BY id DESC limit 3;")
numrows = int(cursor.rowcount)
for x in range(0,numrows):
row = cursor.fetchone()
for num in row:
IDarray[x] = int(num)
print IDarray_prev, " --> ", IDarray
if(IDarray != IDarray_prev):
print "A new ticket has arrived."
time.sleep(5)
IDarray_prev = IDarray
cursor.close()
db.commit()
现在当它运行时,我创建了一个新票证,输出如下:
[11474, 11473, 11472] --> [11474, 11473, 11472]
[11474, 11473, 11472] --> [11474, 11473, 11472]
[11474, 11473, 11472] --> [11474, 11473, 11472]
[11474, 11473, 11472] --> [11474, 11473, 11472]
[11475, 11474, 11473] --> [11475, 11474, 11473]
[11475, 11474, 11473] --> [11475, 11474, 11473]
[11475, 11474, 11473] --> [11475, 11474, 11473]
[11475, 11474, 11473] --> [11475, 11474, 11473]
[11475, 11474, 11473] --> [11475, 11474, 11473]
我的输出格式为:
[Previous_Last_Ticket, Prev_2nd_to_last, Prev_3rd] --> [Current_Last, 2nd-to-last, 3rd]
注意数字的变化,更重要的是,缺少“新票已到达”!
答案 0 :(得分:7)
问题在于以下几行:
IDarray_prev = IDarray
在Python中,这使得IDarray_prev
将相同的基础列表引用为IDarray
。一个中的变化将反映在另一个中,因为它们都指向同一个东西。
要制作可用于稍后比较的列表的副本,请尝试:
IDarray_prev = IDarray[:]
[:]
是Python切片表示法,意思是“整个列表的副本”。
答案 1 :(得分:2)
Python使用引用,因此您在第一次迭代后基本上更改了两个列表(因为在将IDarray
分配给IDarray_prev
后它们都具有相同的引用。)
尝试使用IDarray
分配IDArray_prev = list(IDarray)
的副本。