query = """UPDATE animal SET name = %s
WHERE name = %s
"""
values = ("snake", "turtle")
cursor.execute(query, values)
cursor2.execute(query, values)
या यदि आप उन्हें एक साथ समूहित करना चाहते हैं...
arglist = [query, values]
cursor.execute(*arglist)
cursor2.execute(*arglist)
लेकिन इसे पहले तरीके से करना शायद अधिक पठनीय है।