Using Python, I want to setup a timer before running to the next cell in Jupyter notebook.
i.e. say 10 seconds delay before executing the next cell.
How do I do that? Is it even possible?
Currently I am using
import time
now = time.time()
future = now + 10
while time.time() < future:
pass
after every cell in Jupyter notebook for a delay.