Hi there,
<div><br></div><div>I am *new* (I cannot put enough emphasis on that!) to Python programming, and to programming in general. I am trying to write out a statement that will protect a file on my computer from being run unless I enter the right specifications;</div>
<div><br></div><blockquote class="gmail_quote" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">
your_weight = int(raw_input(&quot;Please enter your weight: &quot;))<br>if your_weight &lt; 0:<br><span class="Apple-tab-span" style="white-space:pre">        </span>print &#39;You&#39;re not Chris!&#39;<br>elif your_weight == 170:<br>
<span class="Apple-tab-span" style="white-space:pre">        </span>print &#39;You might be Chris! But...&#39;<br><span class="Apple-tab-span" style="white-space:pre">        </span>your_height = int(raw_input(&quot;Please enter your height: &quot;))<br>
<span class="Apple-tab-span" style="white-space:pre">        </span>if your_height &lt; 180:<br><span class="Apple-tab-span" style="white-space:pre">                </span>print &#39;You&#39;re not Chris!<br><span class="Apple-tab-span" style="white-space:pre">        </span>elif your_height == 180:<br>
<span class="Apple-tab-span" style="white-space:pre">                </span>print &#39;You&#39;re Chris!&#39;<br><span class="Apple-tab-span" style="white-space:pre">                </span>your_name = int(raw_input(&quot;What is your name? &quot;))<br>
<span class="Apple-tab-span" style="white-space:pre">        </span>elif your_height &gt; 180:<br><span class="Apple-tab-span" style="white-space:pre">                </span>print &#39;You&#39;re not Chris!&quot;<br>elif x &gt; 170:<br><span class="Apple-tab-span" style="white-space:pre">        </span>print &#39;You&#39;re not Chris!&#39;</blockquote>
<div><br></div><div>When I open it, the program says I have a syntax error. Praytell, where did I go wrong?</div><div> </div>