Loading Bar using Python

from tqdm import tqdm
from time import sleep
for i in tqdm(range(10)):
    sleep(.4)
print("Program Loaded Successfully\n")
= int(input("Enter to exit : "))





Comments

Popular Posts