Courez chaque minute Python

from time import time, sleep
while True:
    sleep(60 - time() % 60)
	# thing to run
Molestable Carrot