I just realised, I can't print a character, on the same line with a delay.
import sys
import time
while True:
sys.stdout.write('.')
time.sleep(3.0)
I can only see the result after I break the loop with CTRL+C. Is there a solution for that?
I would like to see each point being printed ....., with a delay.