Jag håller med Otto Allmendingers svar, men för att göra den explicita Denis Otkidachs kommentar, så här kan du iterera över resultaten utan att använda Ottos fetch()-funktion:
import MySQLdb.cursors
connection=MySQLdb.connect(
host="thehost",user="theuser",
passwd="thepassword",db="thedb",
cursorclass = MySQLdb.cursors.SSCursor)
cursor=connection.cursor()
cursor.execute(query)
for row in cursor:
print(row)