Souhlasím s odpovědí Otty Allmendingera, ale abych vyjádřil explicitní komentář Denise Otkidacha, zde je návod, jak můžete iterovat výsledky bez použití Ottovy funkce fetch():
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)