From fe0b347b9763ef4248cccd3c7999e6eb7b386f43 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sun, 15 Sep 2019 20:57:16 +0200 Subject: [PATCH] Progress bar --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2650e0f..b738db7 100644 --- a/README.md +++ b/README.md @@ -2244,7 +2244,7 @@ Progress Bar # $ pip3 install tqdm from tqdm import tqdm from time import sleep -for i in tqdm([1, 2, 3]): +for el in tqdm([1, 2, 3]): sleep(0.2) for i in tqdm(range(100)): sleep(0.02) diff --git a/index.html b/index.html index 68b3a9e..6318b2d 100644 --- a/index.html +++ b/index.html @@ -1941,7 +1941,7 @@ reader(adder(printer())) # 100, 101, ..., 109

Libraries

#Progress Bar

# $ pip3 install tqdm
 from tqdm import tqdm
 from time import sleep
-for i in tqdm([1, 2, 3]):
+for el in tqdm([1, 2, 3]):
     sleep(0.2)
 for i in tqdm(range(100)):
     sleep(0.02)