Search posts, tags, users, and pages
Ayushi Rawat
Exploring and Refactoring!
Hello world! When you happen to install a software, download an application or media or load a page, you see a progress bar give you an estimate of how long the process would take to complete or render. You can add one in your code too. In this Blog ...
Hey @ayushi7rawat
I read your article on Progress bar in python using tqdm and I made a simple timer with it using the code:
tqdm
from tqdm import tqdm, trange import time for i in tqdm(range(60)): time.sleep(1.0) print("time's up")
DesignerAnna1
Keep coding, keep growing.!
By the way, it doesn't actually run the print command, but it works :)
Hey @ayushi7rawat
I read your article on Progress bar in python using
tqdmand I made a simple timer with it using the code:from tqdm import tqdm, trange import time for i in tqdm(range(60)): time.sleep(1.0) print("time's up")