© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
DesignerAnna1
Keep coding, keep growing.!
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")
By the way, it doesn't actually run the print command, but it works :)