私はOttoAllmendingerの回答に同意しますが、Denis Otkidachのコメントを明示するために、Ottoの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)