Fun... One comment on:<br><br><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;"><pre><i>    print &quot;I&#39;m thinking of a number between 1 - 100.  Can you guess what it is?&quot;<br>
<br>    random_num = random.randint(1, 100)<br><br>    guess = int(input(&quot;Type a number between 1 - 100: &quot;))<br><br>
    error = guess &lt; 1, guess &lt; 100<br><br></i></pre></blockquote><div>I think that error was put in there so you can handle errors correct, one way to add some error handing there is add something like:</div><div><br>
</div><div>    while True:</div><div><meta charset="utf-8"><div><div><br></div><div>        guess = int(input(&quot;Type a number between 1 - 100: &quot;))</div><div>        if guess &lt; 1 or guess  &gt; 100:</div><div>            print &quot;%s out of range try again&quot; % guess</div>
<div>            continue</div><div><br></div><div>        break</div></div></div><div><br></div><div><div><br></div></div><div> - Brian</div></div>