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)