<div>Hi all, can you explain me what this code mean :<b><br></b></div><div><b>Fibonacci.py</b></div> <div dir="ltr" style="text-align: left;"> <pre class="source-python"><span class="co1"># This program calculates the Fibonacci sequence</span><br>a = <span class="nu0">0</span><br>b = <span class="nu0">1</span><br>count = <span class="nu0">0</span><br>max_count = <span class="nu0">20</span><br><span class="kw1">while</span> count &lt; max_count:<br>    count = count + <span class="nu0">1</span><br>    <span class="co1"># we need to keep track of a since we change it</span><br>    old_a = a<br>    old_b = b<br>    a = old_b<br>    b = old_a + old_b<br>    <span class="co1"># Notice that the , at the end of a print statement keeps it</span><br>    <span class="co1"># from switching to a new line</span><br>    <span class="kw1">print</span> old_a,<br></pre></div> <div>Output:</div> <pre>0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 2584 4181<br><br>Do you understand it
 ??? Can you explain me....ahhh.... you know<br>i'm a newbie so please explain it with a simple expalanation.<br><br>And I got many tutorial with title *.py(e.g: <b>Fibonacci.py </b>and<b> </b><b>Password.py</b>),<br>can you explain me what *.py mean? Thank's for helping me.<br></pre><p>&#32;