Ich habe ein Python-Skript, das alle 5 Sekunden eine MySQL-Datenbank abfragt und die letzten drei IDs für Helpdesk-Tickets sammelt. Ich verwende MySQLdb als meinen Treiber. Aber das Problem ist in meiner "while" -Schleife, wenn ich überprüfe, ob zwei Arrays gleich sind. Wenn sie NICHT gleich sind, drucke ich "Ein neues Ticket ist angekommen". Aber das druckt nie! Sehen Sie meinen Code:Python "While" Loop-Logik falsch?
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()
nun diese lief, dann habe ich ein neues Ticket, sieht die Ausgabe wie folgt aus:
[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]
Wo das Format meiner Ausgabe lautet:
[Previous_Last_Ticket, Prev_2nd_to_last, Prev_3rd] --> [Current_Last, 2nd-to-last, 3rd]
Beachten Sie die Änderung der Zahlen und, noch wichtiger, das Fehlen von "Ein neues Ticket ist angekommen"!
Schön! Das war's! Vielen Dank! – armani
Oder Sie können die 'copy' Funktion im' copy' Modul verwenden. –
Ja, es gibt viele Möglichkeiten, dies zu lösen. Sie können 'copy' verwenden, oder Sie können auch' list (IDarray) 'verwenden. –