Test Busy Indicator

Busy indicator should appear and then disappear shortly after the countdown below expires.


In [1]:
import time
import sys

In [3]:
for i in range(5,0,-1):
    print(i, '...', flush=True)
    time.sleep(1)
print('GONE!')


5 ...
4 ...
3 ...
2 ...
1 ...
GONE!

In [ ]: