update repository
[cmdllinux.git] / bash_n_examples / python / c.py
blobbdf25a1871faf343bc6b69f65b8c16b1caeb9988
1 import os;
2 import sys;
3 import time;
5 os.system("clear");
6 x=1;
7 while x<20:
8 sys.stdout.write("\033[5;"+str(x)+"H=>");
9 sys.stdout.flush();
10 time.sleep(1);
11 x=x+1;