Saya setuju dengan jawaban Otto Allmendinger, tetapi untuk membuat komentar Denis Otkidach secara eksplisit, berikut adalah bagaimana Anda dapat mengulangi hasil tanpa menggunakan fungsi fetch() Otto:
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)