Created
December 21, 2017 09:14
-
-
Save inazense/6459ee5642406c3eefc7e2273d4441eb to your computer and use it in GitHub Desktop.
Genera una barra de progreso en la terminal
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
from tqdm import tqdm # Requiere instalar la librería -> pip install tqdm | |
from time import sleep | |
tareasQueRealizar = 100; | |
for i in tqdm(range(tareasQueRealizar)): | |
sleep(0.2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment