I am in a situation where my code takes extremely long to run and I don\'t want to be staring at it all the time but want to know when it is done.
How can I make the (Py
It can be done by code as follows:
import time time.sleep(10) #Set the time for x in range(60): time.sleep(1) print('\a')