I believe that line 3 raises an error.  The because you contained the text in single quotes, and then used the same character in &#39;you&#39;re not chris&#39;, Python believes that you are trying to type &quot;you&quot; re not chris&quot;.  You can change the single quotes surrounding your string to double quotes (&quot;you&#39;re not chris&quot;), triple-single quotes (&#39;&#39;&#39;you&#39;re not chris&#39;&#39;&#39;), or triple-double quotes (&quot;&quot;&quot;you&#39;re not chris&quot;&quot;&quot;), or you can tell Python that you want to include the apostrophe in your string by preceding it with a \ (&#39;you\&#39;re not chris&#39;).  The latter works on the same idea as \n and \t.<br>
<br><div class="gmail_quote">On Wed, Jan 11, 2012 at 6:04 AM, col speed <span dir="ltr">&lt;<a href="mailto:ajarncolin@gmail.com">ajarncolin@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="im">&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; your_weight = int(raw_input(&quot;Please enter your weight: &quot;))<br>
&gt;&gt;&gt;&gt;&gt; if your_weight &lt; 0:<br>
&gt;&gt;&gt;&gt;&gt; print &#39;You&#39;re not Chris!&#39;<br>
&gt;&gt;&gt;&gt;&gt; elif your_weight == 170:<br>
&gt;&gt;&gt;&gt;&gt; print &#39;You might be Chris! But...&#39;<br>
&gt;&gt;&gt;&gt;&gt; your_height = int(raw_input(&quot;Please enter your height: &quot;))<br>
&gt;&gt;&gt;&gt;&gt; if your_height &lt; 180:<br>
&gt;&gt;&gt;&gt;&gt; print &#39;You&#39;re not Chris!<br>
&gt;&gt;&gt;&gt;&gt; elif your_height == 180:<br>
&gt;&gt;&gt;&gt;&gt; print &#39;You&#39;re Chris!&#39;<br>
&gt;&gt;&gt;&gt;&gt; your_name = int(raw_input(&quot;What is your name? &quot;))<br>
&gt;&gt;&gt;&gt;&gt; elif your_height &gt; 180:<br>
&gt;&gt;&gt;&gt;&gt; print &#39;You&#39;re not Chris!&quot;<br>
&gt;&gt;&gt;&gt;&gt; elif x &gt; 170:<br>
&gt;&gt;&gt;&gt;&gt; print &#39;You&#39;re not Chris!&#39;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; When I open it, the program says I have a syntax error. Praytell, where<br>
&gt;&gt;&gt;&gt; did<br>
</div>&gt;&gt;&gt;&gt; I go wrong?n<br>
I&#39;m a newbie, but I get &quot;NameError&quot; because &#39;x&#39; is not defined.<br>
Also &quot;your_name = int(raw_input(&quot;What is your name? &quot;))&quot; will give this :<br>
ValueError: invalid literal for int() with base 10: &#39;name&#39;.<br>
As you can&#39;t change a string to be an int.<br>
I can&#39;t find a syntax error, but next time, please paste the whole<br>
traceback as this helps people with less time than me to sort out<br>
problems.<br>
<br>
Good luck with Python<br>
<font color="#888888">Col<br>
</font><div><div></div><div class="h5">_______________________________________________<br>
Tutor maillist  -  <a href="mailto:Tutor@python.org">Tutor@python.org</a><br>
To unsubscribe or change subscription options:<br>
<a href="http://mail.python.org/mailman/listinfo/tutor" target="_blank">http://mail.python.org/mailman/listinfo/tutor</a><br>
</div></div></blockquote></div><br>