Requirements
- Latest version of python
- tqdm module in python
pip install tqdm
- Ide/Code Editor (vscode) ## Code
- make a python file and open it
2.import tqdm and time
import time from tqdm import tqdm
- make a loop
for i in tqdm([0, 25, 50, 75, 100]):
- put sleep in the loop
time.sleep(0.5)
Done
Take care bye
Top comments (0)