Skip to content

Commit fe0b347

Browse files
committed
Progress bar
1 parent 406fe58 commit fe0b347

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2244,7 +2244,7 @@ Progress Bar
22442244
# $ pip3 install tqdm
22452245
from tqdm import tqdm
22462246
from time import sleep
2247-
for i in tqdm([1, 2, 3]):
2247+
for el in tqdm([1, 2, 3]):
22482248
sleep(0.2)
22492249
for i in tqdm(range(100)):
22502250
sleep(0.02)

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1941,7 +1941,7 @@
19411941
<div class="pagebreak"></div><div><h1 id="libraries">Libraries</h1><div><h2 id="progressbar"><a href="#progressbar" name="progressbar">#</a>Progress Bar</h2><pre><code class="python language-python hljs"><span class="hljs-comment"># $ pip3 install tqdm</span>
19421942
<span class="hljs-keyword">from</span> tqdm <span class="hljs-keyword">import</span> tqdm
19431943
<span class="hljs-keyword">from</span> time <span class="hljs-keyword">import</span> sleep
1944-
<span class="hljs-keyword">for</span> i <span class="hljs-keyword">in</span> tqdm([<span class="hljs-number">1</span>, <span class="hljs-number">2</span>, <span class="hljs-number">3</span>]):
1944+
<span class="hljs-keyword">for</span> el <span class="hljs-keyword">in</span> tqdm([<span class="hljs-number">1</span>, <span class="hljs-number">2</span>, <span class="hljs-number">3</span>]):
19451945
sleep(<span class="hljs-number">0.2</span>)
19461946
<span class="hljs-keyword">for</span> i <span class="hljs-keyword">in</span> tqdm(range(<span class="hljs-number">100</span>)):
19471947
sleep(<span class="hljs-number">0.02</span>)

0 commit comments

Comments
 (0)