Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import sys, StringIO,time
- red = '\033[31m'
- gr = '\033[33m'
- normal = '\033[0;0m'
- text = "[OK]"
- counter = 0
- stop = 1500
- print "[*] Preparing for Counting \t\t%s%s%s" % (red,text,normal)
- while counter <= stop:
- sys.stdout.write("\r[*]Counting %s%d%s On Program"%(red,counter,normal))
- sys.stdout.flush()
- counter += 1
- time.sleep(0.005)
- print "\t\t%s[FINISH]%s"%(gr,normal)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement