<div>I&#39;m trying to run the below program and get it to print out feedback as the loop goes. However, if you enter a number too high or too low, it skips the print statement under the if and elif clauses and asks the user to &quot;Guess a number between 1-100&quot; again. Any suggestions on how to get it to print the &quot;too high&quot; and &quot;too low&quot; responses?? Once the number is entered correctly it prints &quot;Just Right&quot; and exits correctly. </div>

<div> </div>
<div><font color="#333333">number = 44</font></div>
<div><font color="#333333"></font> </div>
<div><font color="#333333">while guess != number : <br>    guess = int(<span>raw_input</span><span>(</span><span>&quot;Guess a number between 1 - 100: &quot;</span><span>))</span><br>    <span><strong>if</strong></span> guess <span>&gt;</span> number :<br>
        <span><strong>print</strong></span> <span>(</span><span>&quot;Too high&quot;</span><span>)</span><br><br>    <span><strong>elif</strong></span> guess <span>&lt;</span> number :<br>        <span><strong>print</strong></span> <span>(</span><span>&quot;Too low&quot;</span><span>)</span><br>
    <span><strong>else</strong></span>:<br>        <span><strong>print</strong></span> <span>(</span><span>&quot;Just right&quot;</span> <span>)</span><br></font> </div>