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("Please enter your weight: "))<br>if your_weight < 0:<br><span class="Apple-tab-span" style="white-space:pre">        </span>print 'You're not Chris!'<br>elif your_weight == 170:<br>
<span class="Apple-tab-span" style="white-space:pre">        </span>print 'You might be Chris! But...'<br><span class="Apple-tab-span" style="white-space:pre">        </span>your_height = int(raw_input("Please enter your height: "))<br>
<span class="Apple-tab-span" style="white-space:pre">        </span>if your_height < 180:<br><span class="Apple-tab-span" style="white-space:pre">                </span>print 'You'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 'You're Chris!'<br><span class="Apple-tab-span" style="white-space:pre">                </span>your_name = int(raw_input("What is your name? "))<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 'You're not Chris!"<br>elif x > 170:<br><span class="Apple-tab-span" style="white-space:pre">        </span>print 'You're not Chris!'</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>