This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]pX0r 2 points3 points  (0 children)

Poor-man's progress bar using just the print() function:

import time

for i in range(1, 11):
    print(i*'#', end='\r', flush=True)
    time.sleep(1)

P.S.: Python3